Unable to find input by typing input in the Multiselect Widget

Philearner
New Contributor II

In the AWS databricks widgets.multiselect, I'm unable to find input by typing input in the mulitselect bar. It was working before. Although I can find the inputs by scrolling down the list, it's annoying if the list is long.

databrick widget problemdatabrick widget problem 2​Here's my script:

measlist = ['velocity', 'density', 'brightness', 'volume']

dbutils.widgets.multiselect('Measurement', 'velocity', measlist ) 

meas = (dbutils.widgets.get("Measurement")).split(',')