From f13cd8a9546e00f7521c795b4d001f2d78031c95 Mon Sep 17 00:00:00 2001 From: Sven Brodny Date: Fri, 16 Feb 2024 14:41:52 +0100 Subject: [PATCH] revert: pipe challenge changes (2) --- apps/angular/pipe-easy/src/app/app.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/angular/pipe-easy/src/app/app.component.ts b/apps/angular/pipe-easy/src/app/app.component.ts index e7bd6b5..efa51d5 100644 --- a/apps/angular/pipe-easy/src/app/app.component.ts +++ b/apps/angular/pipe-easy/src/app/app.component.ts @@ -12,9 +12,9 @@ import { Component } from '@angular/core'; `, }) export class AppComponent { - persons = ['toto', 'jack', 'samuel', 'steve']; + persons = ['toto', 'jack']; - // TODO: very heavy computation + // very heavy computation heavyComputation(name: string, index: number) { return `${name} - ${index}`; }