mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-15 13:55:19 +00:00
fix: continue message
This commit is contained in:
parent
580cf6a02c
commit
6dc429504a
1 changed files with 1 additions and 3 deletions
|
|
@ -1852,7 +1852,7 @@
|
||||||
await tick();
|
await tick();
|
||||||
|
|
||||||
const model = $models
|
const model = $models
|
||||||
.filter((m) => m.id === responseMessage?.selectedModelId ?? responseMessage.model)
|
.filter((m) => m.id === (responseMessage?.selectedModelId ?? responseMessage.model))
|
||||||
.at(0);
|
.at(0);
|
||||||
|
|
||||||
if (model) {
|
if (model) {
|
||||||
|
|
@ -1871,8 +1871,6 @@
|
||||||
_chatId
|
_chatId
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
toast.error($i18n.t(`Model {{modelId}} not found`, { modelId }));
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue