Skip to content

Commit

Permalink
Do not resolve widget reference on WidgetFilter widget param
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Dec 7, 2023
1 parent 2350515 commit 6e68661
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lumen/filters/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ class WidgetFilter(BaseWidgetFilter):
e.g. for a numeric value this could be a regular slider or a
range slider.""")

widget = param.ClassSelector(class_=pn.widgets.Widget, doc="""
widget = param.ClassSelector(class_=pn.widgets.Widget, allow_refs=False, doc="""
The widget instance. When declared in a specification a full
module path to a Panel widget class can be provided to override
the default inferred widget.""")
Expand Down

0 comments on commit 6e68661

Please sign in to comment.