diff --git a/apps/angular/interop-rxjs-signal/src/app/list/photos.component.ts b/apps/angular/interop-rxjs-signal/src/app/list/photos.component.ts
index b8705e3..29dc0c3 100644
--- a/apps/angular/interop-rxjs-signal/src/app/list/photos.component.ts
+++ b/apps/angular/interop-rxjs-signal/src/app/list/photos.component.ts
@@ -25,7 +25,7 @@ import { PhotoStore } from './photos.store';
RouterLinkWithHref,
],
template: `
-
Photos
+ Photos
Search
@@ -33,23 +33,23 @@ import { PhotoStore } from './photos.store';
type="text"
matInput
[formControl]="search"
- placeholder="write an article" />
+ placeholder="find a photo" />
-
+
@@ -93,7 +93,7 @@ export default class PhotosComponent implements OnInit {
this.search.setValue(search);
this.formInit = true;
}
- })
+ }),
);
private formInit = false;
@@ -104,8 +104,8 @@ export default class PhotosComponent implements OnInit {
this.search.valueChanges.pipe(
skipWhile(() => !this.formInit),
debounceTime(300),
- distinctUntilChanged()
- )
+ distinctUntilChanged(),
+ ),
);
}