Alerting: fix error dismiss tooltip placement (#43616)

pull/43630/head
Gilles De Mey 3 years ago committed by GitHub
parent 8ed5b95f42
commit d7273c1158
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      public/app/features/alerting/unified/components/rules/RuleListErrors.tsx

@ -107,7 +107,7 @@ const ErrorSummaryButton: FC<ErrorSummaryProps> = ({ count, onClick }) => {
return (
<div className={styles.floatRight}>
<Tooltip content="Show all errors">
<Tooltip content="Show all errors" placement="bottom">
<Button fill="text" variant="destructive" icon="exclamation-triangle" onClick={onClick}>
{count > 1 ? <>{count} errors</> : <>1 error</>}
</Button>

Loading…
Cancel
Save