[feature] import-export inbound #699

This commit is contained in:
Alireza Ahmadi
2023-12-07 12:58:19 +01:00
parent ff59bb60ce
commit fd64ae5c85
9 changed files with 89 additions and 5 deletions

View File

@@ -30,7 +30,10 @@
this.clipboard = new ClipboardJS('#txt-modal-ok-btn', {
text: () => this.content,
});
this.clipboard.on('success', () => app.$message.success('{{ i18n "copied" }}'));
this.clipboard.on('success', () => {
app.$message.success('{{ i18n "copied" }}')
this.close();
});
}
});
},