Unverified Commit 8947da57 authored by Timothy Jaeryang Baek's avatar Timothy Jaeryang Baek Committed by GitHub
Browse files

Merge pull request #2966 from open-webui/dev

fix
parents 96a004d4 16f09fff
......@@ -634,7 +634,7 @@
let docs = [];
if (model.info.meta.knowledge) {
if (model?.info?.meta?.knowledge ?? false) {
docs = model.info.meta.knowledge;
}
......@@ -842,7 +842,7 @@
let docs = [];
if (model.info.meta.knowledge) {
if (model?.info?.meta?.knowledge ?? false) {
docs = model.info.meta.knowledge;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment