Show / Hide Rich Text in Repeater

I can’t seem to get a text box drawing on a database to show when there is text in there. It was working but I changed it to Rich Text for better formatting and now it remains hidden. What am I doing wrong??? Thanks in advance

import wixData from ‘wix-data’ ;

$w . onReady ( function () {
$w ( ‘#dataset2’ ). onReady (() => {
$w ( ‘#repeaterTourOptions’ ). forEachItem (( $item , itemData , index ) => {
if (! itemData . foodOptions ) {
$item ( ‘#FoodOptions’ ). hide ();
} else {
$item ( ‘#FoodOptions’ ). show ();
}
});
});
});

Your code looks fine, so the problem is probably somewhere else.

Ahh @J.D. Took me a while but realised I hadn’t actually renamed the box. SMH. Noob mistake. Was for some reason thinking it had to relate to the column ID in the database.

Legend. Thanks for the kick to make me realise it was within my ability.

Muchos Appreciato!