Loki: Fix labels in LabelBrowser being wrongly cached (#64482)

* remove label cache from label browser

* fix spelling

Co-authored-by: Gareth Dawson <gareth.dawson@grafana.com>

---------

Co-authored-by: Gareth Dawson <gareth.dawson@grafana.com>
This commit is contained in:
Sven Grossmann
2023-03-09 11:36:07 +01:00
committed by GitHub
parent 68b588b912
commit 976568a337
3 changed files with 37 additions and 2 deletions

View File

@@ -33,9 +33,9 @@ export const LabelBrowserModal = (props: Props) => {
return;
}
datasource.languageProvider.start().then(() => {
datasource.languageProvider.fetchLabels().then((labels) => {
setLabelsLoaded(true);
setHasLogLabels(datasource.languageProvider.getLabelKeys().length > 0);
setHasLogLabels(labels.length > 0);
});
}, [datasource, isOpen]);