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
The issue was introduced in the 1.3.0 release. It does come from Panel as I'm using the same HoloViews version (1.18.1) and it works fine with Panel 1.2.3.
Following #5535, I added units to kdims in my DynamicMaps.
This causes an issue where the callable is called twice on render, once with the expected kdim value and then once with None. Any subsequent slider manipulation does not trigger calls as presumably the value remains None.
Consider the following code, if you set the unit to None it works, but anything else leads to a second call with f=None.
The issue was introduced in the 1.3.0 release. It does come from Panel as I'm using the same HoloViews version (1.18.1) and it works fine with Panel 1.2.3.
Following #5535, I added units to kdims in my DynamicMaps.
This causes an issue where the callable is called twice on render, once with the expected kdim value and then once with
None
. Any subsequent slider manipulation does not trigger calls as presumably the value remainsNone
.Consider the following code, if you set the unit to
None
it works, but anything else leads to a second call withf=None
.Note that this does not happen for HoloMaps.
No error is logged either in Python or in the browser.
The text was updated successfully, but these errors were encountered: