You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Resizing component containing DataBox failing due to bug in position update. It causes the component to 'disappear'
This is due to the fact that when updating the position, the first element of the transpose of tmp is taken which is the wrong dimension, tmp is a (1,2) array.meaning that first element of its transpose is just a (1,1) array leading to an error when attempting to unpack these values into xs and ys in map_data
Problem Description
Resizing component containing DataBox failing due to bug in position update. It causes the component to 'disappear'
This is due to the fact that when updating the position, the first element of the transpose of
tmp
is taken which is the wrong dimension, tmp is a (1,2) array.meaning that first element of its transpose is just a (1,1) array leading to an error when attempting to unpack these values into xs and ys inmap_data
Reproduction Steps:
Expected behavior:
No errors when resizing plot component with DataBox overlay
OS, Python version:
MacOS Python 3.60
The text was updated successfully, but these errors were encountered: