Dropdown.options not working (UPDATE: mixed success, sometimes code works, other times the dropdown fails to update)

It seems this hasn’t been fixed, I tried this solution and it worked:

const opts = [ {label: ‘Brazil’ , value: ‘1’ }, {label: ‘Arg’ , value: ‘2’ } ];
$w( ‘#21’ ).options = opts;
$w( ‘#21’ ).options = opts;
$w( ‘#21’ ).options = opts;
$w( ‘#21’ ).selectedIndex = 0 ;
It’s kinda dodgy but it seems to work.