Skip to content

Commit

Permalink
Explore: Removes minus button in adhoc query field (grafana#17573)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaydelaney authored Jun 18, 2019
1 parent 4c4c689 commit d6ee96e
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions public/app/features/explore/AdHocFilterField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,6 @@ export class AdHocFilterField<
onValueChanged={this.onValueChanged(index)}
/>
{index < pairs.length - 1 && <span>&nbsp;AND&nbsp;</span>}
{index < pairs.length - 1 && (
<button className="gf-form-label gf-form-label--btn" onClick={() => this.onRemoveFilter(index)}>
<i className="fa fa-minus" />
</button>
)}
{index === pairs.length - 1 && addFilterButton(this.onAddFilter)}
</div>
);
Expand Down

0 comments on commit d6ee96e

Please sign in to comment.