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.
Here's my script:
measlist = ['velocity', 'density', 'brightness', 'volume']
dbutils.widgets.multiselect('Measurement', 'velocity', measlist )
meas = (dbutils.widgets.get("Measurement")).split(',')