refactor(core): fix lint issues

Fixing lint issues that I've just introduced...
This commit is contained in:
Pawel Kozlowski
2023-06-30 11:44:59 +02:00
committed by Paul Gschwendtner
parent 34f002db7e
commit e94b474b96
@@ -41,9 +41,9 @@ describe('dom property bindings in signal based components', () => {
standalone: true,
})
class App {
_idx = 0;
idx = 0;
nonReactive() {
return this._idx++;
return this.idx++;
}
unrelated = signal('foo');
}
@@ -100,7 +100,7 @@ describe('dom property interpolation in signal based components', () => {
if ((rf & 1)) {
ɵɵelement(0, 'div', 0);
ɵɵpropertyCreate(
1, 'title', () => ɵɵstringifyInterpolation`Hello, ${ctx.name()}!`)
1, 'title', () => ɵɵstringifyInterpolation`Hello, ${ctx.name()}!`);
}
},
styles: []