import-export inbound #1300

This commit is contained in:
Alireza Ahmadi
2023-12-08 20:08:44 +01:00
parent 38013e5ea9
commit 35feef650f
11 changed files with 91 additions and 4 deletions

View File

@@ -31,7 +31,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();
});
}
});
},