Fixes bug on the ordering of Dataset editor.

This commit is contained in:
gkolokythas 2019-07-01 11:50:18 +03:00
parent 3efe26d14e
commit 93ec605c6b
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@ export class FieldEditorModel extends BaseFormModel {
// public title: string;
public defaultValue: DefaultValueEditorModel = new DefaultValueEditorModel();
public viewStyle: ViewStyleEditorModel = new ViewStyleEditorModel();
public page: number;
public ordinal: number;
public page: number = null;
public ordinal: number = null;
public visible: VisibilityEditorModel = new VisibilityEditorModel();
public data: FieldDataEditorModel<any>;
public validations: ValidationType[] = [];