fix typo in flash module, make linter happy

This commit is contained in:
Martin Raifer
2022-07-11 20:24:38 +02:00
parent b61dfe7b8c
commit 7c9b47edb5
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ export function uiFeatureInfo(context) {
return selection => {
hiddenList.forEach(hiddenFeature => {
selection.append('div').call(hiddenFeature);
})
});
};
});
+1 -1
View File
@@ -92,7 +92,7 @@ export function uiFlash(context) {
if (typeof _ !== 'function') {
_label = selection => selection.text(_);
} else {
_label = selection => s_;
_label = selection => selection.text('').call(_);
}
return flash;
};