mirror of
https://github.com/open-webui/open-webui.git
synced 2026-09-11 22:52:54 +00:00
fix: enable ask_user submit when the last question uses the other field (#29494)
This commit is contained in:
parent
2f2f4c872f
commit
d49e424874
1 changed files with 1 additions and 1 deletions
|
|
@ -87,7 +87,7 @@
|
|||
return answer?.type === 'option' || (answer?.type === 'other' && answer.text.trim() !== '');
|
||||
});
|
||||
|
||||
$: complete = hasAnswers();
|
||||
$: complete = hasAnswers(answers);
|
||||
|
||||
const submit = (selected = answers) => {
|
||||
if (!hasAnswers(selected)) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue