Use element type icon colors in block list catalogue, unless a specific color has been defined for catalogue appearance (#13651)

This commit is contained in:
Kenn Jacobsen
2023-01-12 10:51:23 +01:00
committed by GitHub
parent 2ec05431ba
commit 4e7f663596

View File

@@ -30,7 +30,11 @@
};
vm.$onChanges = function () {
vm.icon = vm.elementTypeModel ? vm.elementTypeModel.icon.split(" ")[0] : 'icon-block';
vm.icon = vm.elementTypeModel ? vm.elementTypeModel.icon : 'icon-block';
if (vm.blockConfigModel.iconColor) {
// enforce configured icon color for catalogue appearance instead of icon color from element type
vm.icon = vm.icon.split(" ")[0];
}
};
vm.$onDestroy = function () {