Skip to content

Commit

Permalink
Merge pull request #126 from P4-Games/fix/125-no-show-image-number
Browse files Browse the repository at this point in the history
fixed #125
  • Loading branch information
dappsar authored Nov 16, 2023
2 parents 12eee39 + f9d43e4 commit cf5f198
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sections/Gamma/GammaAlbumInventory.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const GammaAlbumInventory = React.forwardRef((props, book) => {
>
<CustomImage src={`${storageUrlGamma}/T1/${item}.png`} alt='img' />
{paginationObj.user[item]?.stamped && <FcCheckmark />}
<div className='number'>{paginationObj.user[item]?.name}</div>
<div className='number'>{paginationObj.user[item]?.name || '0'}</div>
{
paginationObj.user[item]?.quantity > 1 &&
<div className='quantity'>X:{paginationObj.user[item]?.quantity}</div>
Expand Down

0 comments on commit cf5f198

Please sign in to comment.