Remove question mark badge on folders in model library tree (#1205)

This commit is contained in:
Chenlei Hu
2024-10-10 10:13:14 -04:00
committed by GitHub
parent 8962597e69
commit 4413fd248c
3 changed files with 15 additions and 4 deletions

View File

@@ -154,7 +154,7 @@ const renderedRoot = computed<TreeExplorerNode<ComfyModelDef>>(() => {
if (onlyChild.data.file_name === '(No Content)') {
return '0'
} else if (onlyChild.data.file_name === 'Loading') {
return '?'
return ''
}
}
}