Skip to content

Commit ed76218

Browse files
committed
test(angular): add back standalone true for backwards compat
1 parent 803515f commit ed76218

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

packages/angular/test/base/src/app/lazy/version-test/bind-component-inputs/bind-component-inputs.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import { Component, Input, OnInit } from "@angular/core";
22
import { IonicModule } from '@ionic/angular';
33

44
@Component({
5-
selector: 'app-bind-route',
6-
template: `
5+
selector: 'app-bind-route',
6+
template: `
77
<ion-header>
88
<ion-toolbar>
99
<ion-title>bindToComponentInputs</ion-title>
@@ -19,7 +19,8 @@ import { IonicModule } from '@ionic/angular';
1919
</div>
2020
</ion-content>
2121
`,
22-
imports: [IonicModule]
22+
standalone: true,
23+
imports: [IonicModule]
2324
})
2425
export class BindComponentInputsComponent implements OnInit {
2526

0 commit comments

Comments
 (0)