From db55065687256f01fce66613789f091d8c457d2d Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Mon, 7 Nov 2022 16:46:37 +0100 Subject: [PATCH] fix thanos semver string (#58335) (#58344) (cherry picked from commit 6bc8ec0f9bbcdc48e6865e8318eb7fb8de7068ab) Co-authored-by: Galen Kistler <109082771+gtk-grafana@users.noreply.github.com> --- public/app/plugins/datasource/prometheus/datasource.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/plugins/datasource/prometheus/datasource.tsx b/public/app/plugins/datasource/prometheus/datasource.tsx index 9b3bc44bdd4..201e46cc0d2 100644 --- a/public/app/plugins/datasource/prometheus/datasource.tsx +++ b/public/app/plugins/datasource/prometheus/datasource.tsx @@ -157,7 +157,7 @@ export class PrometheusDatasource this._isDatasourceVersionGreaterOrEqualTo('1.11.0', PromApplication.Cortex) || // https://github.com/thanos-io/thanos/pull/3566 //https://github.com/thanos-io/thanos/releases/tag/v0.18.0 - this._isDatasourceVersionGreaterOrEqualTo('0.18', PromApplication.Thanos) + this._isDatasourceVersionGreaterOrEqualTo('0.18.0', PromApplication.Thanos) ); }