Skip to content

Commit f6c60e8

Browse files
committed
Add title to webview nav buttons
1 parent 0729e8a commit f6c60e8

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/components/pages/BoostHubTeamsShowPage.tsx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,17 +90,19 @@ const BoostHubTeamsShowPage = ({
9090
<Container key={domain} className={active ? 'active' : ''}>
9191
<div className='toolbar' onContextMenu={openToolbarContextMenu}>
9292
{!generalShowAppNavigator && osName === 'macos' && <Spacer />}
93-
<button onClick={goBackWebview}>
93+
<button title='Go Back' onClick={goBackWebview}>
9494
<Icon path={mdiChevronLeft} />
9595
</button>
96-
<button onClick={goForwardWebview}>
96+
<button title='Go Forward' onClick={goForwardWebview}>
9797
<Icon path={mdiChevronRight} />
9898
</button>
99-
<button onClick={reloadWebview}>
99+
<button title='Reload' onClick={reloadWebview}>
100100
<Icon path={mdiRefresh} />
101101
</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}>
104106
<Icon path={mdiContentCopy} />
105107
</button>
106108
</div>

0 commit comments

Comments
 (0)