From 91c05f1ef7f19945889731d50b0f9b3be4e0eb47 Mon Sep 17 00:00:00 2001 From: Teisha McRae Date: Tue, 9 Jun 2026 15:04:03 -0400 Subject: [PATCH] Rename imap_server column to server --- .../js/admin/logs/components/Logs/LogTable/LogTable.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/js/admin/logs/components/Logs/LogTable/LogTable.vue b/resources/js/admin/logs/components/Logs/LogTable/LogTable.vue index 690552e324..1b4e72c3ba 100644 --- a/resources/js/admin/logs/components/Logs/LogTable/LogTable.vue +++ b/resources/js/admin/logs/components/Logs/LogTable/LogTable.vue @@ -145,7 +145,7 @@ export default { const emailColumns = { errors: [ { key: 'id', label: this.$t('ID') }, - { key: 'imap_server', label: this.$t('IMAP Server') }, + { key: 'server', label: this.$t('Server') }, { key: 'email', label: this.$t('User Email') }, { key: 'from.email', label: this.$t('Email From') }, { key: 'error_code', label: this.$t('Error Code') }, @@ -154,7 +154,7 @@ export default { ], matched: [ { key: 'id', label: this.$t('ID') }, - { key: 'imap_server', label: this.$t('IMAP Server') }, + { key: 'server', label: this.$t('Server') }, { key: 'email', label: this.$t('User Email') }, { key: 'from.email', label: this.$t('Email From') }, { key: 'subject', label: this.$t('Subject') }, @@ -168,7 +168,7 @@ export default { ], total: [ { key: 'execution_id', label: this.$t('ID') }, - { key: 'imap_server', label: this.$t('IMAP Server') }, + { key: 'server', label: this.$t('Server') }, { key: 'email', label: this.$t('User Email') }, { key: 'total_emails', label: this.$t('Total Emails') }, { key: 'total_matched', label: this.$t('Total Matches') },