Skip to content

Commit eda7235

Browse files
committed
Lowercase props during static markup generation
1 parent b0be6f5 commit eda7235

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/renderers/dom/shared/DOMPropertyOperations.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ var DOMPropertyOperations = {
108108
if (value == null) {
109109
return '';
110110
}
111-
return name + '=' + quoteAttributeValueForBrowser(value);
111+
return name.toLowerCase() + '=' + quoteAttributeValueForBrowser(value);
112112
}
113113
return null;
114114
},

0 commit comments

Comments
 (0)