We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa8be8f commit 73dfdc6Copy full SHA for 73dfdc6
web/js/modelInfo.js
@@ -80,7 +80,7 @@ export class LoraInfoDialog extends ModelInfoDialog {
80
addTags() {
81
let tags = this.getTagFrequency();
82
if(!tags?.length) {
83
- tags = (this.metadata["modelspec.tags"] ?? "").split(",").map(t => [t.trim(), 1]);
+ tags = this.metadata["modelspec.tags"]?.split(",").map(t => [t.trim(), 1]);
84
}
85
let hasMore;
86
if (tags?.length) {
0 commit comments