Collapsing a video box if empty on a dynamic page that's referenced from another database

$w.onReady(() => {
 $w("#dynamicDataset").onReady(() => {
  const item = $w("#dynamicDataset").getCurrentItem();
  if(!item.video1){$w("#video1").collapse();}
  if(!item.video2) {$w("#video2").collapse();}
 });
});