Skip to content

Commit f734fc8

Browse files
author
icheer
committed
fix: UI
1 parent e15c7d8 commit f734fc8

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

openai.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1290,13 +1290,11 @@ <h2 @click="showAbout" style="cursor: pointer">
12901290
:disabled="isLoading || isStreaming"
12911291
@change="saveData()"
12921292
>
1293+
<option v-if="false"></option>
12931294
<option
12941295
v-for="i in availableModels"
1295-
v-show="true"
12961296
:key="i.value"
12971297
:value="i.value"
1298-
v-cloak
1299-
style="display: none"
13001298
>
13011299
{{ i.label }}
13021300
</option>

worker.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2612,13 +2612,11 @@ function getHtmlContent(modelIds, tavilyKeys, title) {
26122612
:disabled="isLoading || isStreaming"
26132613
@change="saveData()"
26142614
>
2615+
<option v-if="false"></option>
26152616
<option
26162617
v-for="i in availableModels"
2617-
v-show="true"
26182618
:key="i.value"
26192619
:value="i.value"
2620-
v-cloak
2621-
style="display: none"
26222620
>
26232621
{{ i.label }}
26242622
</option>

0 commit comments

Comments
 (0)