From bf7e95faddcf67160dec858f2e29f41679f68013 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Thu, 16 Dec 2021 22:51:40 -0600 Subject: [PATCH] oops, 1 second interval --- src/app/fiveoclock/fiveoclock.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/fiveoclock/fiveoclock.component.ts b/src/app/fiveoclock/fiveoclock.component.ts index f351f44..75a8866 100644 --- a/src/app/fiveoclock/fiveoclock.component.ts +++ b/src/app/fiveoclock/fiveoclock.component.ts @@ -19,7 +19,7 @@ export class FiveoclockComponent implements OnInit { constructor(private timezoneService: TimezoneService){ this.timezones = this.timezoneService.getTimezones() - var second = interval(10000).pipe(startWith(0)) + var second = interval(1000).pipe(startWith(0)) second.subscribe(()=>{ this.fiveOclocks = [];