fix: Increase the out of office message length to 10_000 (#7583)

This commit is contained in:
Liam
2023-07-25 04:29:04 +01:00
committed by GitHub
parent a6a0e78bbe
commit 4b27fdf4db
3 changed files with 5 additions and 1 deletions

View File

@@ -183,7 +183,9 @@ export default {
await this.$store.dispatch('inboxes/updateInbox', payload);
this.showAlert(this.$t('INBOX_MGMT.EDIT.API.SUCCESS_MESSAGE'));
} catch (error) {
this.showAlert(this.$t('INBOX_MGMT.EDIT.API.SUCCESS_MESSAGE'));
this.showAlert(
error.message || this.$t('INBOX_MGMT.EDIT.API.ERROR_MESSAGE')
);
}
},
},