mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Expressions: Fix button icon (#30444)
This commit is contained in:
parent
f2464d5675
commit
b9fd4dba36
@ -316,14 +316,15 @@ export class QueryGroup extends PureComponent<Props, State> {
|
|||||||
)}
|
)}
|
||||||
{isAddingMixed && this.renderMixedPicker()}
|
{isAddingMixed && this.renderMixedPicker()}
|
||||||
{this.isExpressionsSupported(dsSettings) && (
|
{this.isExpressionsSupported(dsSettings) && (
|
||||||
<Tooltip content="Experimental feature, queries might break in next version">
|
<Tooltip content="Experimental feature: queries could stop working in next version" placement="right">
|
||||||
<Button
|
<Button
|
||||||
icon="plus"
|
icon="plus"
|
||||||
onClick={this.onAddExpressionClick}
|
onClick={this.onAddExpressionClick}
|
||||||
variant="secondary"
|
variant="secondary"
|
||||||
className={styles.expressionButton}
|
className={styles.expressionButton}
|
||||||
>
|
>
|
||||||
Expression <Icon name="exclamation-triangle" className="muted" size="sm" />
|
<span>Expression </span>
|
||||||
|
<Icon name="exclamation-triangle" className="muted" size="sm" />
|
||||||
</Button>
|
</Button>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
)}
|
)}
|
||||||
|
Loading…
Reference in New Issue
Block a user