Commit 16f09fff authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix

parent 1fa16d73
...@@ -634,7 +634,7 @@ ...@@ -634,7 +634,7 @@
let docs = []; let docs = [];
if (model.info.meta.knowledge) { if (model?.info?.meta?.knowledge ?? false) {
docs = model.info.meta.knowledge; docs = model.info.meta.knowledge;
} }
...@@ -842,7 +842,7 @@ ...@@ -842,7 +842,7 @@
let docs = []; let docs = [];
if (model.info.meta.knowledge) { if (model?.info?.meta?.knowledge ?? false) {
docs = model.info.meta.knowledge; 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