Skip to content

Commit e773afc

Browse files
committed
Add close tag for some void elements
1 parent 32fda1c commit e773afc

File tree

15 files changed

+15
-16
lines changed

15 files changed

+15
-16
lines changed

app/code/Magento/Checkout/view/frontend/web/template/cart/shipping-estimation.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<fieldset class="fieldset estimate">
99
<legend class="legend">
1010
<span data-bind="text: isVirtual ? $t('Estimate Tax') : $t('Estimate Shipping and Tax') "></span>
11-
</legend><br>
11+
</legend><br/>
1212
<p class="field note" data-bind="text: isVirtual ? $t('Enter your billing address to get a tax estimate.') : $t('Enter your destination to get a shipping estimate.')"></p>
1313
<!-- ko foreach: getRegion('address-fieldsets') -->
1414
<!-- ko template: getTemplate() --><!-- /ko -->

app/code/Magento/Ui/view/base/web/templates/dynamic-rows/cells/thumbnail.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
* See COPYING.txt for license details.
55
*/
66
-->
7-
<img class = 'admin__control-thumbnail' style="max-height: 75px; max-width: 75px;" data-bind="attr: {src: $data.value}">
7+
<img class="admin__control-thumbnail" style="max-height: 75px; max-width: 75px;" data-bind="attr: {src: $data.value}"/>

app/code/Magento/Ui/view/base/web/templates/form/element/price.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
*/
66
-->
77
<div class="admin__control-addon">
8-
<input class="admin__control-text" type="text" data-bind="value: value, attr: { id: uid, disabled: disabled, name: inputName }, hasFocus: focused">
98
<label class="admin__addon-prefix" data-bind="attr: { for: uid }"><span data-bind="text: currency_sign"></span></label>
9+
<input class="admin__control-text" type="text" data-bind="value: value, attr: { id: uid, disabled: disabled, name: inputName }, hasFocus: focused"/>
1010
</div>

app/code/Magento/Ui/view/base/web/templates/form/element/switcher.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<div class="admin__actions-switch" data-role="switcher">
88
<input class="admin__actions-switch-checkbox"
99
type="checkbox"
10-
data-bind="checked: value, attr: { id: uid, disabled: disabled, name: inputName }, hasFocus: focused">
10+
data-bind="checked: value, attr: { id: uid, disabled: disabled, name: inputName }, hasFocus: focused"/>
1111
<label class="admin__actions-switch-label"
1212
data-bind="attr: { for: uid }">
1313
<span data-bind="attr: {

app/code/Magento/Ui/view/base/web/templates/form/element/textarea.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,4 @@
1717
placeholder: placeholder,
1818
id: uid,
1919
disabled: disabled
20-
}"
21-
></textarea>
20+
}"></textarea>

app/code/Magento/Ui/view/base/web/templates/form/element/uploader/preview.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
event="load: $parent.onPreviewLoad.bind($parent)"
1616
attr="
1717
src: $parent.getFilePreview($file),
18-
alt: $file.name">
18+
alt: $file.name"/>
1919
</a>
2020

2121
<div class="actions">

app/code/Magento/Ui/view/base/web/templates/grid/cells/multiselect.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
checkedValue: $row()[$col.indexField],
1313
attr: {
1414
id: index + 'check' + $row()[$col.indexField]
15-
}">
15+
}"/>
1616
<label attr="for: index + 'check' + $row()[$col.indexField]"></label>
1717
</label>

app/code/Magento/Ui/view/base/web/templates/grid/cells/onoff.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
value: $row()[$col.indexField],
1313
attr: {
1414
id: 'check' + $row()[$col.indexField]
15-
}">
15+
}"/>
1616
<label class="admin__actions-switch-label"
1717
data-bind="
1818
attr: {

app/code/Magento/Ui/view/base/web/templates/grid/columns/image-preview.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
<span translate="'Close'"></span>
1818
</button>
1919
</div>
20-
<img class="preview" attr="src: $col.getUrl($row()), alt: $col.getTitle($row())">
20+
<img class="preview" attr="src: $col.getUrl($row()), alt: $col.getTitle($row())"/>
2121
</div>
2222
</div>

app/code/Magento/Ui/view/base/web/templates/grid/columns/multiselect.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
attr: {id: ++ko.uid},
1414
event: { change: togglePage },
1515
css: { '_indeterminate': indetermine },
16-
enable: totalRecords">
16+
enable: totalRecords"/>
1717
<label attr="for: ko.uid"></label>
1818
<button class="action-multicheck-toggle" data-toggle="dropdown"
1919
data-bind="css: { '_active': $collapsible.opened },

0 commit comments

Comments
 (0)