Skip to content

Commit 989da15

Browse files
committed
fix issues in angular
1 parent 0d5174b commit 989da15

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

apps/demos/Demos/Scheduler/Templates/Angular/app/app.component.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ export class AppComponent {
5454

5555
currentSelectedMovie: MovieData | null = null;
5656

57-
movieEditorOptions: DxSelectBoxTypes.Options;
57+
movieEditorOptions: DxSelectBoxTypes.Properties;
5858

59-
priceEditorOptions: DxSelectBoxTypes.Options;
59+
priceEditorOptions: DxSelectBoxTypes.Properties;
6060

6161
constructor(service: Service) {
6262
this.data = service.getData();
@@ -103,7 +103,7 @@ export class AppComponent {
103103
}
104104
};
105105

106-
popupOptions: DxPopupTypes.Options = {
106+
popupOptions: DxPopupTypes.Properties = {
107107
maxWidth: 440,
108108
onOptionChanged: this.onPopupOptionChanged,
109109
};
@@ -120,7 +120,6 @@ export class AppComponent {
120120
};
121121

122122
onFormInitialized = (e: DxFormTypes.InitializedEvent): void => {
123-
console.log('form initialized');
124123
const form = e.component;
125124
const formData = form.option('formData');
126125

0 commit comments

Comments
 (0)