fix: text copy fields

This commit is contained in:
Julian Krauser 2025-01-09 12:48:09 +01:00
parent c83b4670cc
commit 9215ac6fd8
5 changed files with 8 additions and 49 deletions

View file

@ -80,15 +80,13 @@ export default defineComponent({
this.createInvite(createInvite)
.then((result) => {
this.status = { status: "success" };
setTimeout(() => {
this.closeModal();
}, 2000);
})
.catch((err) => {
this.status = { status: "failed", reason: err.response.data };
})
.finally(() => {
setTimeout(() => {
this.closeModal();
}, 2000);
});
},
},
});