From cf0189ab1a446cd06eb1f1cf500ee03b32f86d14 Mon Sep 17 00:00:00 2001 From: Daniel Lee Date: Fri, 28 Sep 2018 19:17:34 +0200 Subject: [PATCH] stackdriver: no tags for annotations (yet) fixes glitch where an empty tag shows up --- public/app/plugins/datasource/stackdriver/datasource.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/plugins/datasource/stackdriver/datasource.ts b/public/app/plugins/datasource/stackdriver/datasource.ts index c230f94c971..8ff81f3160a 100644 --- a/public/app/plugins/datasource/stackdriver/datasource.ts +++ b/public/app/plugins/datasource/stackdriver/datasource.ts @@ -158,7 +158,7 @@ export default class StackdriverDatasource { annotation: annotation, time: Date.parse(v[0]), title: v[1], - tags: [v[2]], + tags: [], text: v[3], }; });