mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fixing weird arrow in select
This commit is contained in:
@@ -78,17 +78,15 @@ export class AddDataSourcePermissions extends PureComponent<Props, State> {
|
||||
<h5>Add Permission For</h5>
|
||||
<div className="gf-form-inline">
|
||||
<div className="gf-form">
|
||||
<div className="gf-form-select-wrapper">
|
||||
<select className="gf-form-input gf-size-auto" value={type} onChange={this.onTypeChanged}>
|
||||
{aclTargets.map((option, idx) => {
|
||||
return (
|
||||
<option key={idx} value={option.value}>
|
||||
{option.text}
|
||||
</option>
|
||||
);
|
||||
})}
|
||||
</select>
|
||||
</div>
|
||||
<select className="gf-form-input gf-size-auto" value={type} onChange={this.onTypeChanged}>
|
||||
{aclTargets.map((option, idx) => {
|
||||
return (
|
||||
<option key={idx} value={option.value}>
|
||||
{option.text}
|
||||
</option>
|
||||
);
|
||||
})}
|
||||
</select>
|
||||
</div>
|
||||
{type === AclTarget.User && (
|
||||
<div className="gf-form">
|
||||
|
||||
Reference in New Issue
Block a user