From f92f84a4a2ea223f5b28a80a2dfbe9e4fd9d8a5a Mon Sep 17 00:00:00 2001 From: yuda Date: Wed, 11 Jun 2025 16:54:32 +0900 Subject: [PATCH] fix: fix LSB of Ticket Board Signed-off-by: yuda --- apps/web/src/services/ops-flow/components/BoardTaskTable.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/services/ops-flow/components/BoardTaskTable.vue b/apps/web/src/services/ops-flow/components/BoardTaskTable.vue index 222558fdc1..7c21b9abb5 100644 --- a/apps/web/src/services/ops-flow/components/BoardTaskTable.vue +++ b/apps/web/src/services/ops-flow/components/BoardTaskTable.vue @@ -126,7 +126,7 @@ const taskTypesById = computed>(() => { /* tasks */ const { taskAPI } = useTaskApi(); const { key: taskListQueryKey, params: taskListQueryParams } = useServiceQueryKey('opsflow', 'task', 'list', { - contextKey: props.categoryId ?? 'all', + contextKey: computed(() => props.categoryId ?? 'all'), params: computed(() => ({ query: taskListApiQuery.value, })), @@ -134,7 +134,7 @@ const { key: taskListQueryKey, params: taskListQueryParams } = useServiceQueryKe const { data, error, refetch, isLoading, } = useQuery({ - queryKey: taskListQueryKey.value, + queryKey: computed(() => taskListQueryKey.value), queryFn: async () => { const res = await taskAPI.list(taskListQueryParams.value); return {