Skip to content

Commit

Permalink
Swap eye icons on quick hide/show editing controls button
Browse files Browse the repository at this point in the history
  • Loading branch information
cqliu1 committed Apr 30, 2020
1 parent c4bad74 commit 0c87676
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export const WorkpadHeader: FunctionComponent<Props> = ({
)}
<EuiToolTip position="bottom" content={getEditToggleToolTip()}>
<EuiButtonIcon
iconType={isWriteable ? 'eye' : 'eyeClosed'}
iconType={isWriteable ? 'eyeClosed' : 'eye'}
onClick={toggleWriteable}
size="s"
aria-label={getEditToggleToolTipText()}
Expand Down

0 comments on commit 0c87676

Please sign in to comment.