mirror of
https://github.com/apache/superset.git
synced 2026-06-05 15:49:27 +00:00
fix(dashboard): invalid button style in undo/redo button (#30273)
This commit is contained in:
@@ -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}
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user