Add Image Gallery Drawer

This commit is contained in:
blessedcoolant 2022-10-08 13:15:30 +13:00 committed by Lincoln Stein
parent 578d8b0cb4
commit efbcbb0d91
3 changed files with 4 additions and 3 deletions

View File

@ -106,6 +106,7 @@ const useCheckParameters = (): boolean => {
shouldGenerateVariations,
seedWeights,
seed,
activeTab,
]);
};

View File

@ -72,8 +72,8 @@ export default function ImageGallery() {
{shouldShowGallery && (
<Resizable
defaultSize={{ width: 'auto', height: '100%' }}
minWidth={'18%'}
defaultSize={{ width: '300', height: '100%' }}
minWidth={'300'}
className="image-gallery-popup"
>
<div className="image-gallery-header">

View File

@ -126,4 +126,4 @@ const ImageGalleryOld = () => {
);
};
export default ImageGallery;
export default ImageGalleryOld;