Browse Source
Task/remove obsolete standalone attribute in page components (#7447)
Remove obsolete standalone attribute
pull/7454/head
Thomas Kaul
2 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
0 additions and
2 deletions
-
apps/client/src/app/pages/demo/demo-page.component.ts
-
apps/client/src/app/pages/i18n/i18n-page.component.ts
|
|
@ -10,7 +10,6 @@ import { Router } from '@angular/router'; |
|
|
changeDetection: ChangeDetectionStrategy.OnPush, |
|
|
changeDetection: ChangeDetectionStrategy.OnPush, |
|
|
host: { class: 'page' }, |
|
|
host: { class: 'page' }, |
|
|
selector: 'gf-demo-page', |
|
|
selector: 'gf-demo-page', |
|
|
standalone: true, |
|
|
|
|
|
templateUrl: './demo-page.html' |
|
|
templateUrl: './demo-page.html' |
|
|
}) |
|
|
}) |
|
|
export class GfDemoPageComponent { |
|
|
export class GfDemoPageComponent { |
|
|
|
|
|
@ -4,7 +4,6 @@ import { ChangeDetectionStrategy, Component } from '@angular/core'; |
|
|
changeDetection: ChangeDetectionStrategy.OnPush, |
|
|
changeDetection: ChangeDetectionStrategy.OnPush, |
|
|
host: { class: 'page' }, |
|
|
host: { class: 'page' }, |
|
|
selector: 'gf-i18n-page', |
|
|
selector: 'gf-i18n-page', |
|
|
standalone: true, |
|
|
|
|
|
styleUrls: ['./i18n-page.scss'], |
|
|
styleUrls: ['./i18n-page.scss'], |
|
|
templateUrl: './i18n-page.html' |
|
|
templateUrl: './i18n-page.html' |
|
|
}) |
|
|
}) |
|
|
|