mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Various 7.0 UI tweaks (#23972)
* Set min height of panel pane to 200px * Disable badge on viz picker when item is in disabled in search results * Fix UserProfile inputs width * Remove select caret in user admin permissions editor * fix 23911
This commit is contained in:
@@ -61,13 +61,11 @@ export class UserPermissions extends PureComponent<Props, State> {
|
||||
<td className="width-16">Grafana Admin</td>
|
||||
{isEditing ? (
|
||||
<td colSpan={2}>
|
||||
<div className="gf-form-select-wrapper width-8">
|
||||
<RadioButtonGroup
|
||||
options={adminOptions}
|
||||
value={currentAdminOption}
|
||||
onChange={this.onAdminOptionSelect}
|
||||
/>
|
||||
</div>
|
||||
<RadioButtonGroup
|
||||
options={adminOptions}
|
||||
value={currentAdminOption}
|
||||
onChange={this.onAdminOptionSelect}
|
||||
/>
|
||||
</td>
|
||||
) : (
|
||||
<td colSpan={2}>
|
||||
|
||||
@@ -272,6 +272,7 @@ export class UserProfileRow extends PureComponent<UserProfileRowProps, UserProfi
|
||||
onBlur={this.onInputBlur}
|
||||
onChange={this.onInputChange}
|
||||
ref={this.setInputElem}
|
||||
width={30}
|
||||
/>
|
||||
) : (
|
||||
<span>{this.props.value}</span>
|
||||
|
||||
Reference in New Issue
Block a user