-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Axes line w/o ticklabels fix #1910
Conversation
Thanks for ferreting this out @etpinard In the case where this fallback is needed, |
Good call. Done in d951f6a |
💃 🎉 |
'$(docker inspect --format \'{{.Id}}\' ' + constants.testContainerName + ')', | ||
'lxc-attach', | ||
'-n', containerId, | ||
'-f', '/var/lib/docker/containers/' + containerId + '/config.lxc', |
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.
🔈 Big shoutout to hasimo
on the CircleCI forums:
https://discuss.circleci.com/t/container-is-not-defined-on-lxc-attach/14684/5
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.
🥇 🎺 lets get back in business!
fixes #1907
which was broken since eb48a9d where on this line
ax.tickfont
is assumed to exist - which isn't the case whenshowticklabels
is false.Commit 3c26cbf first adds a mock inspired by https://codepen.io/plotly/pen/qXWmpY and generates a baseline using
v1.28.3
(i.e before the regression).Commit fe20694 proposes a fix where a fallback for
tickfont.size
is added, similar to another fallback inaxes.js
. Notice that commit fe20694 did generate a diff for the new mock, but looks like it is only of a few sub-pixels:cc @alexcjohnson