Fix button alignment in weapon modal

This commit is contained in:
Justin Edmund 2023-06-21 03:00:11 -07:00
parent 37782acd69
commit 601ba8a535

View file

@ -394,6 +394,7 @@ const WeaponModal = ({
{gridWeapon.object.awakenings ? awakeningSelect() : ''} {gridWeapon.object.awakenings ? awakeningSelect() : ''}
</div> </div>
<div className="DialogFooter" ref={footerRef}> <div className="DialogFooter" ref={footerRef}>
<div className="actions">
<Button <Button
contained={true} contained={true}
onClick={updateWeapon} onClick={updateWeapon}
@ -401,6 +402,7 @@ const WeaponModal = ({
text={t('modals.weapon.buttons.confirm')} text={t('modals.weapon.buttons.confirm')}
/> />
</div> </div>
</div>
</DialogContent> </DialogContent>
</Dialog> </Dialog>
) )