Skip to content
Snippets Groups Projects
Commit 16b7ac5a authored by MeiMei's avatar MeiMei Committed by syuilo
Browse files

Fix #4593 (#4594)

parent 5932cb86
No related branches found
No related tags found
No related merge requests found
......@@ -305,11 +305,16 @@ export default Vue.extend({
this.exportTarget == 'user-lists' ? 'i/import-user-lists' :
null, {
fileId: file.id
}).then(() => {
this.$root.dialog({
type: 'info',
text: this.$t('import-requested')
});
}).catch((e: any) => {
this.$root.dialog({
type: 'error',
text: e.message
});
this.$root.dialog({
type: 'info',
text: this.$t('import-requested')
});
});
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment