28.10.2021, 12:56
Try this custom JS:
Code:
$(function(){
$('.control-link').find('.control-icon').find('img').each(function() {
if ($(this).attr("src").includes('frame.svg')){
$(this).attr("src", "/scada/resources/icons/auto_1.svg") //new icon
}
});
});