File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -90,17 +90,19 @@ const BoostHubTeamsShowPage = ({
90
90
< Container key = { domain } className = { active ? 'active' : '' } >
91
91
< div className = 'toolbar' onContextMenu = { openToolbarContextMenu } >
92
92
{ ! generalShowAppNavigator && osName === 'macos' && < Spacer /> }
93
- < button onClick = { goBackWebview } >
93
+ < button title = 'Go Back' onClick = { goBackWebview } >
94
94
< Icon path = { mdiChevronLeft } />
95
95
</ button >
96
- < button onClick = { goForwardWebview } >
96
+ < button title = 'Go Forward' onClick = { goForwardWebview } >
97
97
< Icon path = { mdiChevronRight } />
98
98
</ button >
99
- < button onClick = { reloadWebview } >
99
+ < button title = 'Reload' onClick = { reloadWebview } >
100
100
< Icon path = { mdiRefresh } />
101
101
</ button >
102
- < div className = 'url' > { url } </ div >
103
- < button onClick = { copyUrl } title = 'Copy URL' >
102
+ < div title = { url } className = 'url' >
103
+ { url }
104
+ </ div >
105
+ < button title = 'Copy URL' onClick = { copyUrl } >
104
106
< Icon path = { mdiContentCopy } />
105
107
</ button >
106
108
</ div >
You can’t perform that action at this time.
0 commit comments