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 4e271fe commit 713c8caCopy full SHA for 713c8ca
CHANGELOG.md
@@ -51,6 +51,7 @@
51
- Remove automatic key suffix for popover texts
52
- Limit effective zoom level by new "Maximum zoom level" option
53
- Fix transformation machinery for data in timeseries format
54
+- Acquire location data again after being cleared out when hitting an empty dataset
55
56
## v0.2.0
57
src/worldmap_ctrl.ts
@@ -246,6 +246,9 @@ export default class WorldmapCtrl extends MetricsPanelCtrl {
246
onRefresh() {
247
console.info('Refreshing panel');
248
this.errors.reset('data');
249
+ if (_.isEmpty(this.locations) && _.isEmpty(this.panel.snapshotLocationData)) {
250
+ this.loadLocationData(true);
251
+ }
252
}
253
254
onDataSnapshotLoad(snapshotData) {
0 commit comments