mirror of
https://github.com/umap-project/umap.git
synced 2025-04-29 03:42:37 +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) {
|
onSuccess(count) {
|
||||||
if (count) {
|
if (count) {
|
||||||
Alert.success(translate('Successfully imported {count} feature(s)'), {
|
Alert.success(
|
||||||
|
translate('Successfully imported {count} feature(s)', {
|
||||||
count: count,
|
count: count,
|
||||||
})
|
})
|
||||||
|
)
|
||||||
} else {
|
} else {
|
||||||
Alert.success(translate('Data successfully imported!'))
|
Alert.success(translate('Data successfully imported!'))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue