File tree 3 files changed +3
-3
lines changed
src/compiler/compile/render_dom/wrappers/Element
test/runtime/samples/inline-style-optimisation-bailout
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ function get_dom_updater(
209
209
}
210
210
211
211
if ( binding . node . name === 'value' ) {
212
- return `@set_input_value(${ element . var } , ${ binding . snippet } );`
212
+ return `@set_input_value(${ element . var } , ${ binding . snippet } );` ;
213
213
}
214
214
215
215
return `${ element . var } .${ binding . node . name } = ${ binding . snippet } ;` ;
Original file line number Diff line number Diff line change @@ -385,7 +385,7 @@ export default class ElementWrapper extends Wrapper {
385
385
386
386
const is = this . attributes . find ( attr => attr . node . name === 'is' ) ;
387
387
if ( is ) {
388
- return `@element_is("${ name } ", ${ is . render_chunks ( ) . join ( ' + ' ) } );`
388
+ return `@element_is("${ name } ", ${ is . render_chunks ( ) . join ( ' + ' ) } );` ;
389
389
}
390
390
391
391
return `@element("${ name } ")` ;
Original file line number Diff line number Diff line change @@ -17,4 +17,4 @@ export default {
17
17
assert . equal ( styles . color , '' ) ;
18
18
assert . equal ( styles . fontSize , '20px' ) ;
19
19
}
20
- }
20
+ } ;
You can’t perform that action at this time.
0 commit comments