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, shouldGenerateVariations,
seedWeights, seedWeights,
seed, seed,
activeTab,
]); ]);
}; };

View File

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

View File

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