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
6 changes: 3 additions & 3 deletions webui/components/sidebar/chats/chats-list.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<h3 class="section-header">Chats</h3>
<!-- New Chat Button -->
<button id="newChat" class="btn-icon-action chat-list-action-btn" @click="$store.chats.newChat()" aria-label="New Chat" title="New Chat" data-bs-placement="top" data-bs-trigger="hover">
<span class="material-symbols-outlined">chat_add_on</span>
<span class="material-symbols-outlined" aria-hidden="true">chat_add_on</span>
</button>
<x-extension id="chats-header-controls"></x-extension>
</div>
Expand All @@ -33,8 +33,8 @@ <h3 class="section-header">Chats</h3>
<span class="chat-name"
x-text="context.name ? context.name : 'Chat #' + context.no"></span>
</div>
<button class="btn-icon-action chat-list-action-btn" title="Close chat" @click.stop="$confirmClick($event, () => $store.chats.killChat(context.id))">
<span class="material-symbols-outlined">close</span>
<button class="btn-icon-action chat-list-action-btn" title="Close chat" aria-label="Close chat" @click.stop="$confirmClick($event, () => $store.chats.killChat(context.id))">
<span class="material-symbols-outlined" aria-hidden="true">close</span>
</button>
</div>
</li>
Expand Down
13 changes: 7 additions & 6 deletions webui/components/sidebar/tasks/tasks-list.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,16 @@
<div class="task-actions">
<button class="btn-icon-action"
@click.stop="$store.tasks.openDetail(task.id)"
title="View task details">
<span class="material-symbols-outlined">Info</span>
title="View task details"
aria-label="View task details">
<span class="material-symbols-outlined" aria-hidden="true">Info</span>
</button>
<button class="btn-icon-action" title="Clear task chat"
<button class="btn-icon-action" title="Clear task chat" aria-label="Clear task chat"
@click.stop="$confirmClick($event, () => $store.tasks.reset(task.id))">
<span class="material-symbols-outlined">delete_sweep</span>
<span class="material-symbols-outlined" aria-hidden="true">delete_sweep</span>
</button>
<button class="btn-icon-action" title="Delete task" @click.stop="$confirmClick($event, () => $store.tasks.deleteTask(task.id))">
<span class="material-symbols-outlined">close</span>
<button class="btn-icon-action" title="Delete task" aria-label="Delete task" @click.stop="$confirmClick($event, () => $store.tasks.deleteTask(task.id))">
<span class="material-symbols-outlined" aria-hidden="true">close</span>
</button>
</div>
</div>
Expand Down