File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/compiler/compile/render_dom/wrappers/Element Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ export default class AttributeWrapper extends BaseAttributeWrapper {
7070 const namespace = this . parent . node . namespace ;
7171 // some processing only applies to html namespace (and not MathML, SVG, or Svelte Native etc)
7272 if ( namespace && namespace != 'html' && namespace != namespaces . html ) {
73- // attributes outside of the html namespaced may be case sensitive
73+ // attributes outside of the html namespace may be case sensitive
7474 // namespaces for which we don't have case corrections, are left in their original case (required for svelte-native)
7575 this . name = ( valid_namespaces . indexOf ( namespace ) >= 0 ) ? fix_attribute_casing ( this . node . name ) : this . node . name ;
7676 this . is_indirectly_bound_value = false ;
You can’t perform that action at this time.
0 commit comments