Skip to content

Commit 9d21f03

Browse files
authored
chore: add labels & filterable selects (#315)
1 parent 1aa08da commit 9d21f03

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

src/components/Header.vue

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ function refreshView() {
107107
<span>{{ v.text }}:</span>
108108
<el-select
109109
:model-value="v.active"
110+
filterable
110111
size="small"
111112
fit-input-width
112113
w-36
@@ -139,10 +140,21 @@ function refreshView() {
139140
</div>
140141

141142
<div flex="~ gap-4" text-lg>
142-
<button i-ri-refresh-line hover:color-primary @click="refreshView" />
143-
<button i-ri-share-line hover:color-primary @click="copyLink" />
143+
<button
144+
i-ri-refresh-line
145+
title="Refresh sandbox"
146+
hover:color-primary
147+
@click="refreshView"
148+
/>
149+
<button
150+
i-ri-share-line
151+
title="Copy link"
152+
hover:color-primary
153+
@click="copyLink"
154+
/>
144155
<button
145156
i-ri-sun-line
157+
title="Toggle theme"
146158
dark:i-ri-moon-line
147159
hover:color-primary
148160
@click="toggleDark()"
@@ -159,7 +171,7 @@ function refreshView() {
159171
<el-popover trigger="click" width="300px">
160172
<Settings />
161173
<template #reference>
162-
<button i-ri:settings-line hover:color-primary />
174+
<button i-ri:settings-line title="cdn" hover:color-primary />
163175
</template>
164176
</el-popover>
165177
</div>

0 commit comments

Comments
 (0)