diff --git a/modules/helpdesk/web/js/helpdesk-communication.js b/modules/helpdesk/web/js/helpdesk-communication.js index 0557520..fd7a8c3 100644 --- a/modules/helpdesk/web/js/helpdesk-communication.js +++ b/modules/helpdesk/web/js/helpdesk-communication.js @@ -31,7 +31,7 @@ function entryTimestamp(entry, t) { if (date && time) return `${date} ${time}`; if (entry.timestamp_iso) return entry.timestamp_iso; if (date) return date; - return t('Unknown time'); + return '—'; } function participantRole(entry) { @@ -84,7 +84,7 @@ export function renderCommunicationFeed(entries, options = {}) { let html = '
    '; for (const entry of list) { - const actor = entry.actor || t('Unknown user'); + const actor = entry.actor || 'System'; const typeVariant = entry.type_variant || 'other'; const type = entry.type || ''; const stateSubtype = entry.state_subtype || '';