Skip to content
Merged
Prev Previous commit
reintroduce scissors unicode again
  • Loading branch information
43081j committed Jun 6, 2019
commit eea53444a726c10853595d0865dd7204145033b7
2 changes: 1 addition & 1 deletion src/compiler/compile/render-dom/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ export default function dom(
})
.map(n => `$$dirty.${n}`).join(' || ');

let snippet = `[✂${d.node.body.start}-${d.node.end}✂]`;
let snippet = `[${d.node.body.start}-${d.node.end}]`;
if (condition) snippet = `if (${condition}) { ${snippet} }`;

if (condition || uses_props) {
Expand Down
1 change: 0 additions & 1 deletion test/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"rules": {
"@typescript-eslint/no-unused-vars": "off",
"no-console": "off"
}
}