Alerting: change from cta to secondary (#49321)

This commit is contained in:
Peter Holmberg
2022-05-23 02:15:46 -07:00
committed by GitHub
parent ebc6d3a63c
commit 1402c85ce1

View File

@@ -41,7 +41,7 @@ export const Math: FC<Props> = ({ labelWidth, onChange, query }) => {
>
<>
<TextArea value={query.expression} onChange={onExpressionChange} rows={5} placeholder={mathPlaceholder} />
<Button color="primary" size="sm" onClick={() => toggleShowHelp()}>
<Button variant="secondary" size="sm" onClick={toggleShowHelp}>
{showHelp === false ? 'Show' : 'Hide'} help
</Button>
</>