Commit d6ee96ee by kay delaney Committed by GitHub

Explore: Removes minus button in adhoc query field (#17573)

Closes #17571
parent 4c4c6899
......@@ -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>
);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment