mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
Adjust gallery image length handling
This commit is contained in:
parent
22c6400bb8
commit
f706a13230
@ -13,11 +13,8 @@ export const DeleteImageButton = memo((props: DeleteImageButtonProps) => {
|
||||
const { onClick, isDisabled } = props;
|
||||
const { t } = useTranslation();
|
||||
const isConnected = useAppSelector((s) => s.system.isConnected);
|
||||
const imageSelectionLength: number = (useAppSelector((s) => s.gallery.selection) || []).length;
|
||||
const labelMessage: string =
|
||||
imageSelectionLength > 1
|
||||
? t('gallery.deleteImage_plural', { count: imageSelectionLength })
|
||||
: t('gallery.deleteImage');
|
||||
const imageSelectionLength: number = useAppSelector((s) => s.gallery.selection.length);
|
||||
const labelMessage: string = `${t('gallery.deleteImage', { count: imageSelectionLength })} (Del)`;
|
||||
|
||||
return (
|
||||
<IconButton
|
||||
|
Loading…
x
Reference in New Issue
Block a user