We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50a0cf2 commit 3410cefCopy full SHA for 3410cef
SampleApp/src/app/features/features.component.ts
@@ -153,7 +153,7 @@ export class FeaturesComponent implements OnInit {
153
private pushEventToFeed(type: string, data?: any) {
154
if (this.feedPaused) return;
155
const now = new Date();
156
- const time = now.toLocaleTimeString([], { hour12: false });
+ const time = now.toLocaleTimeString([], { hour12: true });
157
// Always add to eventFeed, filtering happens in the getter
158
this.eventFeed.unshift({ time, type, data });
159
if (this.eventFeed.length > 200) this.eventFeed.pop();
0 commit comments