We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c039283 commit 8409524Copy full SHA for 8409524
bklog/web/src/views/retrieve-v3/search-bar/index.tsx
@@ -482,6 +482,11 @@ export default defineComponent({
482
on-text-to-query={(value: string) => {
483
// 根据当前模式确定触发来源
484
const triggerSource = `${currentSearchMode.value}_mode` as 'ui_mode' | 'sql_mode';
485
+
486
+ if (triggerSource === 'sql_mode') {
487
+ store.commit('updateIndexItemParams', { keyword: value });
488
+ }
489
490
handleTextToQuery(value, triggerSource);
491
}}
492
is-ai-loading={isAiLoading.value}
0 commit comments