From d000db258ae4b960d4cec1dcc63533ab97f53812 Mon Sep 17 00:00:00 2001 From: jdegand <70610011+jdegand@users.noreply.github.com> Date: Thu, 21 Dec 2023 18:42:17 -0500 Subject: [PATCH] fix: change placeholder text --- .../src/app/list/photos.component.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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 b8705e313..29dc0c3f5 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(), + ), ); }