File tree 4 files changed +6
-2
lines changed
test/runtime/samples/empty-style-block
4 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ export default function dom(
222
222
this._yield = options._yield;
223
223
224
224
this._torndown = false;
225
- ${ parsed . css &&
225
+ ${ generator . css &&
226
226
options . css !== false &&
227
227
`if ( !document.getElementById( ${ JSON . stringify (
228
228
generator . cssId + '-style'
Original file line number Diff line number Diff line change 1
1
const start = / \n ( \t + ) / ;
2
2
3
- export default function deindent ( strings : string [ ] , ...values : any [ ] ) {
3
+ export default function deindent ( strings : TemplateStringsArray , ...values : any [ ] ) {
4
4
const indentation = start . exec ( strings [ 0 ] ) [ 1 ] ;
5
5
const pattern = new RegExp ( `^${ indentation } ` , 'gm' ) ;
6
6
Original file line number Diff line number Diff line change
1
+ export default {
2
+ html : '' ,
3
+ } ;
Original file line number Diff line number Diff line change
1
+ < style > </ style >
You can’t perform that action at this time.
0 commit comments