Skip to content

Commit

Permalink
fix(gui): correct label for diffusion models in image card
Browse files Browse the repository at this point in the history
  • Loading branch information
ssube committed May 27, 2023
1 parent 24f1ecc commit 5eb2128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/src/components/card/ImageCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export function ImageCard(props: ImageCardProps) {
</IconButton>
</Tooltip>
</GridItem>
<GridItem xs={4}>{t('modelType.diffusion')}: {model}</GridItem>
<GridItem xs={4}>{t('modelType.diffusion', {count: 1})}: {model}</GridItem>
<GridItem xs={4}>{t('parameter.scheduler')}: {scheduler}</GridItem>
<GridItem xs={4}>{t('parameter.seed')}: {params.seed}</GridItem>
<GridItem xs={4}>{t('parameter.cfg')}: {params.cfg}</GridItem>
Expand Down

0 comments on commit 5eb2128

Please sign in to comment.