From b2860720d56b23c6f6843fc177f44ee7dcd3c717 Mon Sep 17 00:00:00 2001 From: MarekWo Date: Wed, 1 Apr 2026 07:54:07 +0200 Subject: [PATCH] fix(ui): change initial DM status text to 'Sending...' Co-Authored-By: Claude Opus 4.6 --- app/static/js/dm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/static/js/dm.js b/app/static/js/dm.js index 1c4a5ad..ac6975c 100644 --- a/app/static/js/dm.js +++ b/app/static/js/dm.js @@ -1215,7 +1215,7 @@ function displayMessages(messages) { let retryInfo = ''; if (msg.is_own) { const isPending = !msg.status || (msg.status !== 'delivered' && msg.status !== 'failed'); - const initialText = isPending && msg.expected_ack ? 'Attempt 1/...' : ''; + const initialText = isPending && msg.expected_ack ? 'Sending...' : ''; retryInfo = `
${initialText}
`; }