How to hide elements in repeaters if the data is false

if (deals === true){				
    let dealprice = "RM " + String(car.sellpricerm);				
    let beforedealprice = "RM " + String(car.dealpricerm);				
    $w('#text63').text = beforedealprice;				
    $w('#text62').text = dealprice;				
    $w('#text63').show();				
    $w('#line2').show();				
    $w('#box34').show();						
} else {				
    let dealprice = "RM " + String(car.sellpricerm);				
    $w('#text62').text = dealprice;				
    $w('#text63').hide();				
    $w('#line2').hide();				
    $w('#box34').hide();			
}

Are the marked elements → INSIDE THE REPEATER <— or —> OUTSIDE THE REPEATER?

That’s the question !!!