Alerting: fix error dismiss tooltip placement (#43616)

This commit is contained in:
Gilles De Mey 2022-01-03 16:09:08 +01:00 committed by GitHub
parent 8ed5b95f42
commit d7273c1158
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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