Skip to content

Commit

Permalink
Treat unrecognized interact kwargs as fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Jan 11, 2019
1 parent d98934d commit ccef599
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panel/interact.py
Expand Up @@ -280,7 +280,7 @@ def widget_from_single_value(o, name):
min, max, value = _get_min_max_value(None, None, o)
return FloatSlider(value=o, start=min, end=max, name=name)
else:
return None
return fixed(o)

@staticmethod
def widget_from_tuple(o, name, default=empty):
Expand Down

0 comments on commit ccef599

Please sign in to comment.