fix(dashboard): invalid button style in undo/redo button (#30273)
This commit is contained in:
parent
f315a4f02c
commit
c33d49ecab
|
|
@ -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}
|
||||
>
|
||||
|
|
|
|||
Loading…
Reference in New Issue