Merge pull request #100 from ollama-webui/dev

fix: chat history model load
This commit is contained in:
Timothy Jaeryang Baek
2023-11-12 13:49:29 -05:00
committed by GitHub

View File

@@ -372,7 +372,7 @@
history = _history; history = _history;
} }
if ('models' in chat) { if ('models' in chat && chat.models !== undefined) {
selectedModels = chat.models ?? selectedModels; selectedModels = chat.models ?? selectedModels;
} else { } else {
selectedModels = [chat.model ?? '']; selectedModels = [chat.model ?? ''];