Dropdown List won't enable

I am trying to add a dropdown list where users can filter results in the dataset on my page. In the drop down list properties, I have checked the enabled by default. However, when I preview, the drop down is shaded and doesn’t function. Anyone have any idea what I’m missing?
Thanks!

Hello Shannon,

Please share your page code below

Hi, I’m having the same problem for the button under the “Antibuddy” tab. Here’s the URL:

https://marissafahlberg.wixsite.com/antibuddy

And this is the code:

import wixData from ‘wix-data’;

$w.onReady( function () {

uniqueDropDown1(); 

});

function uniqueDropDown1 (){

wixData.query("Flow_Monkey_Antibodies") 

    .limit(1000) 

  .find() 

  .then(results => { 

const uniqueTitles = getUniqueTitles(results.items);

       $w("#antigen").options = buildOptions(uniqueTitles); 

  }); 

function getUniqueTitles(items) {

const titlesOnly = items.map(item => item.antigen);

return [… new Set(titlesOnly)];

} 

function buildOptions(uniqueList) {

return uniqueList.map(curr => {

return {label:curr, value:curr};

    }); 

} 

}

Same problem here!
Has anyone found a workaround?
Thanks and cheers!