Skip to content

Commit

Permalink
Tooltips for text in lists (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
electerious committed Jun 20, 2021
1 parent ad31819 commit 533443a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ This release contains a refactored front-end that takes advantage of the GraphQL

- Views and duration details: Click on a chart bar on the overview and insights page to see more details
- Active visitors counter updates periodically without reloading the UI
- Tooltips for text in lists (#266)

### Changed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const UrlRow = (props) => {
}),
h('div', { className: 'flexList__column flexList__column--text-adjustment' },
h('span', {}, hostnameUrl),
h('span', { className: 'flexList__obscured' }, pathnameUrl),
h('span', { className: 'flexList__obscured', title: pathnameUrl }, pathnameUrl),
),
)
)
Expand All @@ -56,7 +56,7 @@ const TextRow = (props) => {
barWidth: props.barWidth,
}),
h('div', { className: 'flexList__column flexList__column--text-adjustment' },
h('span', { className: 'flexList__truncated' }, props.text),
h('span', { className: 'flexList__truncated', title: props.text }, props.text),
),
)
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const Row = (props) => {
...rootProps,
},
h('div', { className: 'flexList__column flexList__column--text-adjustment' },
h('span', { className: 'flexList__truncated' }, props.text),
h('span', { className: 'flexList__truncated', title: props.text }, props.text),
),
)
)
Expand Down

0 comments on commit 533443a

Please sign in to comment.