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 5713884 commit f106deeCopy full SHA for f106dee
app/code/Magento/Tax/view/adminhtml/templates/rate/js.phtml
@@ -1,6 +1,6 @@
1
<?php
2
/**
3
- * Copyright 2014 Adobe
+ * Copyright 2013 Adobe
4
* All Rights Reserved.
5
*/
6
@@ -43,7 +43,12 @@ require([
43
opt.value = '*';
44
opt.text = '*';
45
opt.title = '*';
46
- try { selectEl.options.add(opt, 1); } catch (e) { selectEl.insertBefore(opt, selectEl.options[1] || null); }
+ try {
47
+ selectEl.options.add(opt, 1);
48
+ } catch (e)
49
+ {
50
+ selectEl.insertBefore(opt, selectEl.options[1] || null);
51
+ }
52
}
53
selectEl.value = '*';
54
selectEl.disabled = true; // keep disable mode
0 commit comments