Skip to content

Commit

Permalink
better model selection menu..
Browse files Browse the repository at this point in the history
  • Loading branch information
yeus committed May 19, 2024
1 parent 3d93ba7 commit f3c4498
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/components/CreateNewTask.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@
<q-menu color="secondary">
<q-list style="min-width: 100px">
<q-item-label header>Select previous AI model!</q-item-label>
<q-item v-if="state.modelHistory.length === 0" v-close-popup>
No other models were selected yet!
</q-item>
<q-item
v-for="(m, idx) in state.modelHistory"
:key="m"
Expand All @@ -75,6 +78,19 @@
{{ m }}</q-item-section
>
</q-item>
<q-item
clickable
v-close-popup
@click="expandedTaskCreation = !expandedTaskCreation"
>
<q-item-section avatar>
<q-icon name="smart_toy"></q-icon>
</q-item-section>
<q-item-section> More AI Settings </q-item-section>
<q-item-section side>
<q-icon name="navigate_next"></q-icon>
</q-item-section>
</q-item>
</q-list>
</q-menu>
</q-btn>
Expand Down

0 comments on commit f3c4498

Please sign in to comment.