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'
@@ -796,11 +797,7 @@ class SnippetNoteDetail extends React.Component {
796
797
isActive = { note . isStarred }
797
798
/>
798
799
799
- < button styleName = 'control-fullScreenButton' title = { i18n . __ ( 'Fullscreen' ) }
800
- onMouseDown = { ( e ) => this . handleFullScreenButton ( e ) } >
801
- < img styleName = 'iconInfo' src = '../resources/icon/icon-full.svg' />
802
- < span styleName = 'tooltip' > { i18n . __ ( 'Fullscreen' ) } </ span >
803
- </ button >
800
+ < FullscreenButton onClick = { ( e ) => this . handleFullScreenButton ( e ) } />
804
801
805
802
< TrashButton onClick = { ( e ) => this . handleTrashButtonClick ( e ) } />
806
803
You can’t perform that action at this time.
0 commit comments