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>
|
<h5>Add Permission For</h5>
|
||||||
<div className="gf-form-inline">
|
<div className="gf-form-inline">
|
||||||
<div className="gf-form">
|
<div className="gf-form">
|
||||||
<div className="gf-form-select-wrapper">
|
<select className="gf-form-input gf-size-auto" value={type} onChange={this.onTypeChanged}>
|
||||||
<select className="gf-form-input gf-size-auto" value={type} onChange={this.onTypeChanged}>
|
{aclTargets.map((option, idx) => {
|
||||||
{aclTargets.map((option, idx) => {
|
return (
|
||||||
return (
|
<option key={idx} value={option.value}>
|
||||||
<option key={idx} value={option.value}>
|
{option.text}
|
||||||
{option.text}
|
</option>
|
||||||
</option>
|
);
|
||||||
);
|
})}
|
||||||
})}
|
</select>
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
{type === AclTarget.User && (
|
{type === AclTarget.User && (
|
||||||
<div className="gf-form">
|
<div className="gf-form">
|
||||||
|
|||||||
Reference in New Issue
Block a user