Skip to content

Commit 5dcf061

Browse files
Copilotrenemadsen
andcommitted
Add standalone: false to all component decorators
Co-authored-by: renemadsen <[email protected]>
1 parent 147ceab commit 5dcf061

File tree

6 files changed

+9
-3
lines changed

6 files changed

+9
-3
lines changed

eform-client/src/app/plugins/modules/customers-pn/components/customer-pn-add/customer-pn-add.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ import {CustomersPnService} from '../../services';
66
@Component({
77
selector: 'app-customer-pn-add',
88
templateUrl: './customer-pn-add.component.html',
9-
styleUrls: ['./customer-pn-add.component.scss']
9+
styleUrls: ['./customer-pn-add.component.scss'],
10+
standalone: false
1011
})
1112
export class CustomerPnAddComponent implements OnInit {
1213
@ViewChild('frame', {static: false}) frame;

eform-client/src/app/plugins/modules/customers-pn/components/customer-pn-delete/customer-pn-delete.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ import {CustomersPnService} from '../../services';
77
@Component({
88
selector: 'app-customer-pn-delete',
99
templateUrl: './customer-pn-delete.component.html',
10-
styleUrls: ['./customer-pn-delete.component.scss']
10+
styleUrls: ['./customer-pn-delete.component.scss'],
11+
standalone: false
1112
})
1213
export class CustomerPnDeleteComponent implements OnInit {
1314
@ViewChild('frame', {static: false}) frame;

eform-client/src/app/plugins/modules/customers-pn/components/customer-pn-edit/customer-pn-edit.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ import {CustomersPnService} from '../../services';
66
@Component({
77
selector: 'app-customer-pn-edit',
88
templateUrl: './customer-pn-edit.component.html',
9-
styleUrls: ['./customer-pn-edit.component.scss']
9+
styleUrls: ['./customer-pn-edit.component.scss'],
10+
standalone: false
1011
})
1112
export class CustomerPnEditComponent implements OnInit {
1213
@ViewChild('frame', {static: false}) frame;

eform-client/src/app/plugins/modules/customers-pn/components/customer-pn-import/customer-pn-import.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ const URL = '';
1212
selector: 'app-customer-pn-import',
1313
templateUrl: './customer-pn-import.component.html',
1414
styleUrls: ['./customer-pn-import.component.scss'],
15+
standalone: false
1516
})
1617
export class CustomerPnImportComponent implements OnInit {
1718
public data: any = [];

eform-client/src/app/plugins/modules/customers-pn/components/customers-pn-fields/customers-pn-fields.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import {
1616
selector: 'app-customers-pn-fields',
1717
templateUrl: './customers-pn-fields.component.html',
1818
styleUrls: ['./customers-pn-fields.component.scss'],
19+
standalone: false
1920
})
2021
export class CustomersPnFieldsComponent implements OnInit {
2122
isChecked = false;

eform-client/src/app/plugins/modules/customers-pn/components/customers-pn-page/customers-pn-page.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import { CustomersStateService } from '../store';
2020
selector: 'app-customers-pn-page',
2121
templateUrl: './customers-pn-page.component.html',
2222
styleUrls: ['./customers-pn-page.component.scss'],
23+
standalone: false
2324
})
2425
export class CustomersPnPageComponent implements OnInit {
2526
@ViewChild('createCustomerModal', { static: false }) createCustomerModal;

0 commit comments

Comments
 (0)