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

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}
>