Skip to content

Commit 7f3e5ce

Browse files
fix(ui): wrong translation string
1 parent b9c7c6a commit 7f3e5ce

File tree

1 file changed

+1
-1
lines changed
  • invokeai/frontend/web/src/features/modelManagerV2/subpanels/ModelPanel

1 file changed

+1
-1
lines changed

invokeai/frontend/web/src/features/modelManagerV2/subpanels/ModelPanel/ModelView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export const ModelView = memo(({ modelConfig }: Props) => {
5353
<SimpleGrid columns={2} gap={4}>
5454
<ModelAttrView label={t('modelManager.baseModel')} value={modelConfig.base} />
5555
<ModelAttrView label={t('modelManager.modelType')} value={modelConfig.type} />
56-
<ModelAttrView label={t('common.format')} value={modelConfig.format} />
56+
<ModelAttrView label={t('modelManager.modelFormat')} value={modelConfig.format} />
5757
<ModelAttrView label={t('modelManager.path')} value={modelConfig.path} />
5858
<ModelAttrView label={t('modelManager.fileSize')} value={filesize(modelConfig.file_size)} />
5959
{modelConfig.type === 'main' && (

0 commit comments

Comments
 (0)