mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 20:35:19 +00:00
fix: quick actions input
This commit is contained in:
parent
d5ad0ae862
commit
c3ca241e57
1 changed files with 1 additions and 1 deletions
|
|
@ -104,7 +104,7 @@
|
|||
// Remove all TOOL placeholders from the prompt
|
||||
prompt = prompt.replace(toolIdPattern, '');
|
||||
|
||||
if (prompt.includes('{{INPUT_CONTENT}}') && !floatingInput) {
|
||||
if (prompt.includes('{{INPUT_CONTENT}}') && floatingInput) {
|
||||
prompt = prompt.replace('{{INPUT_CONTENT}}', floatingInputValue);
|
||||
floatingInputValue = '';
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue