Skip to content

Commit b176971

Browse files
committed
Enable propagation of user warnings again
1 parent 6ceec6b commit b176971

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/worldmap_ctrl.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,10 +284,17 @@ export default class WorldmapCtrl extends MetricsPanelCtrl {
284284
if (this.data.length && autoCenterMap) {
285285
this.updateMapCenter(false);
286286
}
287+
287288
} catch (err) {
288289
this.errors.add(err, { domain: 'data' });
289290
appEvents.emit('alert-error', ['Data error', err.toString()]);
291+
290292
} finally {
293+
294+
// Propagate warnings and errors to tooltip in panel corner.
295+
this.propagateWarningsAndErrors();
296+
297+
// Trigger the rendering process.
291298
this.render();
292299
}
293300
}

0 commit comments

Comments
 (0)