Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added .jules/palette.md
Empty file.
16 changes: 8 additions & 8 deletions webui/components/chat/message-queue/message-queue.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
Queued Messages (<span x-text="$store.messageQueue.count"></span>)
</span>
<div class="queue-header-actions">
<button class="queue-header-btn" @click="$store.messageQueue.sendAll()" title="Send all">
<span class="material-symbols-outlined">keyboard_double_arrow_right</span>
<button class="queue-header-btn" @click="$store.messageQueue.sendAll()" title="Send all" aria-label="Send all">
<span class="material-symbols-outlined" aria-hidden="true">keyboard_double_arrow_right</span>
</button>
<button class="queue-header-btn delete" @click="$store.messageQueue.clearQueue()" title="Clear all">
<span class="material-symbols-outlined">delete_sweep</span>
<button class="queue-header-btn delete" @click="$store.messageQueue.clearQueue()" title="Clear all" aria-label="Clear all">
<span class="material-symbols-outlined" aria-hidden="true">delete_sweep</span>
</button>
</div>
</div>
Expand Down Expand Up @@ -46,11 +46,11 @@
</template>
</div>
<div class="queue-item-actions">
<button class="queue-action-btn send" @click="$store.messageQueue.sendItem(item.id)" title="Send now">
<span class="material-symbols-outlined">send</span>
<button class="queue-action-btn send" @click="$store.messageQueue.sendItem(item.id)" title="Send now" aria-label="Send now">
<span class="material-symbols-outlined" aria-hidden="true">send</span>
</button>
<button class="queue-action-btn delete" @click="$store.messageQueue.removeItem(item.id)" title="Remove">
<span class="material-symbols-outlined">close</span>
<button class="queue-action-btn delete" @click="$store.messageQueue.removeItem(item.id)" title="Remove" aria-label="Remove">
<span class="material-symbols-outlined" aria-hidden="true">close</span>
</button>
</div>
</div>
Expand Down