From a30571ba297bbccb877fab8f841a4d0d1cb314e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20Poupard?= Date: Wed, 29 Jan 2025 15:53:16 +0100 Subject: [PATCH] Update app.component.ts to work with Angular 19 seamlessly --- projects/playground/src/lib/core/app.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/playground/src/lib/core/app.component.ts b/projects/playground/src/lib/core/app.component.ts index 53e6b75..bfcd7bb 100644 --- a/projects/playground/src/lib/core/app.component.ts +++ b/projects/playground/src/lib/core/app.component.ts @@ -14,6 +14,7 @@ import { Sandboxes } from "./shared/sandboxes"; selector: 'playground-app', templateUrl: './app.component.html', styleUrls: ['./app.component.css'], + standalone: false, }) export class AppComponent implements OnInit { @ViewChildren('scenarioElement') scenarioLinkElements: QueryList;