We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4e129f6 + b4241f1 commit 1412c67Copy full SHA for 1412c67
src/app/services/configuration-control.service.ts
@@ -57,7 +57,8 @@ export class ConfigurationBase<T> {
57
this.mandatory = options.mandatory === undefined ? 'false' : options.mandatory;
58
this.required = options.mandatory === undefined ? false : (options.mandatory == 'true');
59
this.editable = options.editable === undefined ? true : options.editable;
60
- this.order = options.order === undefined ? 1 : options.order;
+ // assign a big number to the property which doesn't have 'order' key to show the property at last
61
+ this.order = options.order === undefined ? 999 : options.order;
62
this.length = options.length;
63
this.minimum = options.minimum;
64
this.maximum = options.maximum;
0 commit comments