File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ import _ from 'lodash'
20
20
import { findNoteTitle } from 'browser/lib/findNoteTitle'
21
21
import convertModeName from 'browser/lib/convertModeName'
22
22
import AwsMobileAnalyticsConfig from 'browser/main/lib/AwsMobileAnalyticsConfig'
23
+ import FullscreenButton from './FullscreenButton'
23
24
import TrashButton from './TrashButton'
24
25
import RestoreButton from './RestoreButton'
25
26
import PermanentDeleteButton from './PermanentDeleteButton'
@@ -799,11 +800,7 @@ class SnippetNoteDetail extends React.Component {
799
800
isActive = { note . isStarred }
800
801
/>
801
802
802
- < button styleName = 'control-fullScreenButton' title = { i18n . __ ( 'Fullscreen' ) }
803
- onMouseDown = { ( e ) => this . handleFullScreenButton ( e ) } >
804
- < img styleName = 'iconInfo' src = '../resources/icon/icon-full.svg' />
805
- < span styleName = 'tooltip' > { i18n . __ ( 'Fullscreen' ) } </ span >
806
- </ button >
803
+ < FullscreenButton onClick = { ( e ) => this . handleFullScreenButton ( e ) } />
807
804
808
805
< TrashButton onClick = { ( e ) => this . handleTrashButtonClick ( e ) } />
809
806
You can’t perform that action at this time.
0 commit comments