mirror of
https://github.com/MarekWo/mc-webui.git
synced 2026-05-02 11:32:35 +02:00
fix(ui): change initial DM status text to 'Sending...'
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -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 = `<div class="dm-delivery-meta dm-retry-info" data-dm-id="${msg.id || ''}">${initialText}</div>`;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user