mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
refactor(core): fix lint issues
Fixing lint issues that I've just introduced...
This commit is contained in:
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: []
|
||||
|
||||
Reference in New Issue
Block a user