mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-05-03 12:42:01 +00:00
Fix fallback of unrecognized extension categories (#1807)
This commit is contained in:
@@ -144,7 +144,10 @@ const categories = computed<SettingTreeNode[]>(() =>
|
||||
aboutPanelNode
|
||||
].map((node) => ({
|
||||
...node,
|
||||
translatedLabel: t(`settingsCategories.${normalizeI18nKey(node.label)}`)
|
||||
translatedLabel: t(
|
||||
`settingsCategories.${normalizeI18nKey(node.label)}`,
|
||||
node.label
|
||||
)
|
||||
}))
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user