-
Notifications
You must be signed in to change notification settings - Fork 285
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(trace): add a span aside with timing info and feedback #4071
Conversation
c1bc504
to
eaaef2f
Compare
() => (endTime ? new Date(endTime) : null), | ||
[endTime] | ||
); | ||
const latencyMs = useMemo(() => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yup, I think it should be there
const spanInfoWrapCSS = css` | ||
flex: 1 1 auto; | ||
overflow-y: auto; | ||
// Overflow fails to take into account padding |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could this be solved with box-sizing or something?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried box-sizing and it's not working. Not sure why
resolves #4029
Adds a span aside section that can be collapsed that contains timing info. Will add annotations next.