Alerting: Fix dashboard alerting tooltip text (#73659)

Co-authored-by: Gilles De Mey <gilles.de.mey@gmail.com>
This commit is contained in:
Krishna Dhakal 2023-08-29 22:35:02 +05:45 committed by GitHub
parent 4ba6889df8
commit d61f1145c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ export function PanelHeaderTitleItems(props: Props) {
// panel health
const alertStateItem = (
<Tooltip content={`alerting is ${alertState}`}>
<Tooltip content={alertState ?? 'unknown'}>
<PanelChrome.TitleItem
className={cx({
[styles.ok]: alertState === AlertState.OK,