Dashboards: Increase limit of annotation tags (#111538)

increase limit of annotation tags
This commit is contained in:
Oscar Kilhed
2025-09-24 12:50:02 +02:00
committed by GitHub
parent 17c3f34688
commit ce84ac517e
+1 -1
View File
@@ -39,7 +39,7 @@ class LegacyAnnotationServer implements AnnotationServer {
}
async tags() {
const response = await getBackendSrv().get<AnnotationTagsResponse>('/api/annotations/tags');
const response = await getBackendSrv().get<AnnotationTagsResponse>('/api/annotations/tags?limit=1000');
return response.result.tags.map(({ tag, count }) => ({
term: tag,
count,