Skip to content

Commit 3db9cea

Browse files
committed
rm tooltip for 3 dots button
1 parent 0817bc9 commit 3db9cea

File tree

2 files changed

+11
-13
lines changed

2 files changed

+11
-13
lines changed
-9 Bytes
Binary file not shown.

examples/server/webui/index.html

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -62,19 +62,17 @@ <h2 class="font-bold ml-4">Conversations</h2>
6262
<!-- action buttons (top right) -->
6363
<div class="flex items-center">
6464
<div v-if="messages.length > 0" class="dropdown dropdown-end">
65-
<div class="tooltip tooltip-bottom" data-tip="Chat options">
66-
<!-- "..." button -->
67-
<button tabindex="0" role="button" class="btn m-1" :disabled="isGenerating">
68-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-three-dots-vertical" viewBox="0 0 16 16">
69-
<path d="M9.5 13a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m0-5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m0-5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0"/>
70-
</svg>
71-
</button>
72-
<!-- "delete" dropdown menu -->
73-
<ul tabindex="0" class="dropdown-content menu bg-base-100 rounded-box z-[1] w-52 p-2 shadow">
74-
<li @click="downloadConv(viewingConvId)"><a>Download</a></li>
75-
<li class="text-error" @click="deleteConv(viewingConvId)"><a>Delete</a></li>
76-
</ul>
77-
</div>
65+
<!-- "..." button -->
66+
<button tabindex="0" role="button" class="btn m-1" :disabled="isGenerating">
67+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-three-dots-vertical" viewBox="0 0 16 16">
68+
<path d="M9.5 13a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m0-5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m0-5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0"/>
69+
</svg>
70+
</button>
71+
<!-- "delete" dropdown menu -->
72+
<ul tabindex="0" class="dropdown-content menu bg-base-100 rounded-box z-[1] w-52 p-2 shadow">
73+
<li @click="downloadConv(viewingConvId)"><a>Download</a></li>
74+
<li class="text-error" @click="deleteConv(viewingConvId)"><a>Delete</a></li>
75+
</ul>
7876
</div>
7977
<div class="tooltip tooltip-bottom" data-tip="Settings">
8078
<button class="btn" @click="showConfigDialog = true" :disabled="isGenerating">

0 commit comments

Comments
 (0)