mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fix: graphite annotation tooltip included undefined, fixes #9707
This commit is contained in:
@@ -39,7 +39,7 @@ export function annotationTooltipDirective($sanitize, dashboardSrv, contextSrv,
|
|||||||
text = text + '<br />' + event.text;
|
text = text + '<br />' + event.text;
|
||||||
}
|
}
|
||||||
} else if (title) {
|
} else if (title) {
|
||||||
text = title + '<br />' + text;
|
text = title + '<br />' + (_.isString(text) ? text : '');
|
||||||
title = '';
|
title = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user