We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 872365b commit e1da759Copy full SHA for e1da759
CHANGES.rst
@@ -18,6 +18,7 @@ in progress
18
- Tests: Make test case for `explore datasources` use _two_ data sources
19
- Tests: Mimic Grafana 7/8 on datasource references within dashboards, newer
20
versions have objects (uid, type) instead of bare names
21
+- Fix implementation flaw reported at #32. Thanks, @IgorOhrimenko and @carpenterbees!
22
23
24
2022-02-03 0.13.1
grafana_wtf/core.py
@@ -495,7 +495,7 @@ def collect_datasource_items(element):
495
ds = dict(ds)
496
if ds not in items:
497
items.append(ds)
498
- return sorted(items)
+ return items
499
500
def index_dashboards(self):
501
0 commit comments