Skip to content

Commit

Permalink
fix #600 timline cut off
Browse files Browse the repository at this point in the history
added overflow: visible; to VisTimeline.vue to allow tooltip to overflow the container
  • Loading branch information
aaayushsingh authored and ErikBjare committed Mar 15, 2022
1 parent b27a951 commit e794176
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>
return `<table style="z-index: 999;">
<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 e794176

Please sign in to comment.