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
parent
commit
e45694f7ab
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      apps/client/src/app/pages/demo/demo-page.component.ts
  2. 1
      apps/client/src/app/pages/i18n/i18n-page.component.ts

1
apps/client/src/app/pages/demo/demo-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 {

1
apps/client/src/app/pages/i18n/i18n-page.component.ts

@ -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'
}) })

Loading…
Cancel
Save