Skip to content

Commit 87bf8d7

Browse files
committed
hipefully removed a little but where we can't load foreign tasks anymore! :)
1 parent 2732d20 commit 87bf8d7

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

src/components/taskyon/GetStarted.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
>
2626
<CreateTaskButton
2727
v-if="'md' in s"
28+
class="mdt"
2829
:markdown="s.md"
2930
:label="s.label"
3031
outline
@@ -33,6 +34,7 @@
3334
/>
3435
<q-btn
3536
v-else-if="s.url"
37+
class="stb"
3638
:to="s.url.toString()"
3739
:label="s.label"
3840
outline

src/pages/taskyon/TaskChat.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -382,9 +382,9 @@ watch(
382382
watch(
383383
() => route.query,
384384
() => {
385-
if (route.query.t !== state.llmSettings.selectedTaskId) {
386-
void updateChatThread()
387-
}
385+
// don't update chat if the task is the same as we ahve alread selected...
386+
if (route.query.t && route.query.t === state.llmSettings.selectedTaskId) return
387+
void updateChatThread()
388388
},
389389
{ immediate: true },
390390
)

0 commit comments

Comments
 (0)