From d73a7b41a1a5c5d7411667224a8389529585c412 Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Mon, 1 Dec 2025 17:23:14 +0800 Subject: [PATCH] fix: Fix prompt word filtering issue. --- frontend/src/views/system/prompt/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/system/prompt/index.vue b/frontend/src/views/system/prompt/index.vue index 4b64428a..5a6855d5 100644 --- a/frontend/src/views/system/prompt/index.vue +++ b/frontend/src/views/system/prompt/index.vue @@ -381,7 +381,7 @@ const configParams = () => { state.conditions.forEach((ele: any) => { ele.value.forEach((itx: any) => { - str += str ? `&${ele.field}=${itx}` : `${ele.field}=${itx}` + str += str ? `_${itx}` : `${ele.field}=${itx}` }) })