fix(dashboard): invalid button style in undo/redo button (#30273)

This commit is contained in:
JUST.in DO IT 2024-09-17 10:16:56 -07:00 committed by GitHub
parent f315a4f02c
commit c33d49ecab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -575,7 +575,7 @@ class Header extends PureComponent {
title={t('Undo the action')}
>
<StyledUndoRedoButton
type="text"
buttonStyle="link"
disabled={undoLength < 1}
onClick={undoLength && onUndo}
>
@ -595,7 +595,7 @@ class Header extends PureComponent {
title={t('Redo the action')}
>
<StyledUndoRedoButton
type="text"
buttonStyle="link"
disabled={redoLength < 1}
onClick={redoLength && onRedo}
>