fix: replace @/ path aliases with relative imports (no alias configured in vite.config)
This commit is contained in:
parent
b5779224b1
commit
55b278ff8e
2 changed files with 3 additions and 3 deletions
|
|
@ -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,
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue