Skip to content

Commit 78a2578

Browse files
authored
fix: Fix prompt word filtering issue. (#531)
1 parent 7dd8949 commit 78a2578

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/views/system/prompt/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ const configParams = () => {
381381
382382
state.conditions.forEach((ele: any) => {
383383
ele.value.forEach((itx: any) => {
384-
str += str ? `&${ele.field}=${itx}` : `${ele.field}=${itx}`
384+
str += str ? `_${itx}` : `${ele.field}=${itx}`
385385
})
386386
})
387387

0 commit comments

Comments
 (0)