mirror of
https://github.com/umap-project/umap.git
synced 2025-04-28 19:42:36 +02:00
fix: properly close the translate parentesis
This commit is contained in:
parent
54aa687ba1
commit
cbab6e03f8
1 changed files with 5 additions and 3 deletions
|
@ -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!'))
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue