fix: replace @/ path aliases with relative imports (no alias configured in vite.config)
Some checks are pending
CI / Python tests (push) Waiting to run
CI / Frontend typecheck + tests (push) Waiting to run
Mirror / mirror (push) Waiting to run

This commit is contained in:
pyr0ball 2026-04-14 12:18:43 -07:00
parent b5779224b1
commit 55b278ff8e
2 changed files with 3 additions and 3 deletions

View file

@ -83,7 +83,7 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, nextTick, watch } from 'vue' import { ref, nextTick, watch } from 'vue'
import { useLLMQueryBuilder } from '@/composables/useLLMQueryBuilder' import { useLLMQueryBuilder } from '../composables/useLLMQueryBuilder'
const { const {
isOpen, isOpen,

View file

@ -4,7 +4,7 @@
* State and API call logic for the LLM query builder panel. * State and API call logic for the LLM query builder panel.
*/ */
import { ref } from 'vue' import { ref } from 'vue'
import { useSearchStore, type SearchParamsResult } from '@/stores/search' import { useSearchStore, type SearchParamsResult } from '../stores/search'
export type BuildStatus = 'idle' | 'thinking' | 'done' | 'error' export type BuildStatus = 'idle' | 'thinking' | 'done' | 'error'
@ -64,7 +64,7 @@ export function useLLMQueryBuilder() {
status.value = 'done' status.value = 'done'
if (autoRun.value) { if (autoRun.value) {
await store.search(params.base_query, store.filters.value) await store.search(params.base_query, store.filters)
} }
return params return params