There was an error while loading. Please reload this page.
1 parent 2732d20 commit 87bf8d7Copy full SHA for 87bf8d7
2 files changed
src/components/taskyon/GetStarted.vue
@@ -25,6 +25,7 @@
25
>
26
<CreateTaskButton
27
v-if="'md' in s"
28
+ class="mdt"
29
:markdown="s.md"
30
:label="s.label"
31
outline
@@ -33,6 +34,7 @@
33
34
/>
35
<q-btn
36
v-else-if="s.url"
37
+ class="stb"
38
:to="s.url.toString()"
39
40
src/pages/taskyon/TaskChat.vue
@@ -382,9 +382,9 @@ watch(
382
watch(
383
() => route.query,
384
() => {
385
- if (route.query.t !== state.llmSettings.selectedTaskId) {
386
- void updateChatThread()
387
- }
+ // don't update chat if the task is the same as we ahve alread selected...
+ if (route.query.t && route.query.t === state.llmSettings.selectedTaskId) return
+ void updateChatThread()
388
},
389
{ immediate: true },
390
)
0 commit comments