From cbab6e03f86ddd7288fd36bc1581bd0be4c46daa Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Fri, 13 Dec 2024 09:48:03 +0100 Subject: [PATCH] fix: properly close the translate parentesis --- umap/static/umap/js/modules/importer.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/umap/static/umap/js/modules/importer.js b/umap/static/umap/js/modules/importer.js index 265b1130..658a604b 100644 --- a/umap/static/umap/js/modules/importer.js +++ b/umap/static/umap/js/modules/importer.js @@ -355,9 +355,11 @@ export default class Importer extends Utils.WithTemplate { onSuccess(count) { if (count) { - Alert.success(translate('Successfully imported {count} feature(s)'), { - count: count, - }) + Alert.success( + translate('Successfully imported {count} feature(s)', { + count: count, + }) + ) } else { Alert.success(translate('Data successfully imported!')) }