We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ab0534 commit 1adecf4Copy full SHA for 1adecf4
app/code/Magento/Customer/view/adminhtml/templates/system/config/validatevat.phtml
@@ -41,6 +41,11 @@ require(['prototype'], function(){
41
validationMessage.setStyle({color:'green'});
42
} else {
43
validationMessage.removeClassName('hidden').addClassName('admin__field-error');
44
+ if (validationMessage.style.removeProperty) {
45
+ validationMessage.style.removeProperty('color');
46
+ } else {
47
+ validationMessage.style.removeAttribute('color');
48
+ }
49
}
50
} catch (e) {
51
0 commit comments