This repository has been archived by the owner on Feb 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Product Gallery Thumbnails: Uppercase the enum and fix the thumbnails…
… position bug when initially adding the Product Gallery block
- Loading branch information
1 parent
a2171c0
commit 54d195b
Showing
4 changed files
with
17 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
assets/js/blocks/product-gallery/inner-blocks/product-gallery-thumbnails/constants.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export enum ThumbnailsPosition { | ||
'Off' = 'off', | ||
'Left' = 'left', | ||
'Bottom' = 'bottom', | ||
'Right' = 'right', | ||
OFF = 'off', | ||
LEFT = 'left', | ||
BOTTOM = 'bottom', | ||
RIGHT = 'right', | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters