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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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>
</>