Skip to content

Commit

Permalink
style: cleanup not needed changes
Browse files Browse the repository at this point in the history
remove unwanted z-index change from tooltip.js
  • Loading branch information
aaayushsingh authored and ErikBjare committed Mar 15, 2022
1 parent e794176 commit 686136b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/tooltip.js
Expand Up @@ -34,7 +34,7 @@ export function buildTooltip(bucket, e) {
<tr><td>Data:</td><td>${sanitize(JSON.stringify(e.data))}</td></tr>
`;
}
return `<table style="z-index: 999;">
return `<table>
<tr></tr>
<tr><th>Start:</th><td>${moment(e.timestamp).format()}</td></tr>
<tr><th>Stop:</th><td>${moment(e.timestamp).add(e.duration, 'seconds').format()}</td></tr>
Expand Down

0 comments on commit 686136b

Please sign in to comment.