implemented no measurements or condition filter
This commit is contained in:
@ -15,7 +15,8 @@
|
||||
<option *ngFor="let level of login.levels" [value]="level">{{level}}</option>
|
||||
<ng-template rbFormValidationMessage="required">Cannot be empty</ng-template>
|
||||
</rb-form-select>
|
||||
<rb-form-input name="location" label="location" appValidate="string" required [appValidateArgs]="['alphanum']"
|
||||
<rb-form-input name="location" label="location (Abbreviation, eg. Rng, for sample number)" appValidate="string"
|
||||
[appValidateArgs]="['alphanum']" required
|
||||
[(ngModel)]="newUser.location" #locationInput="ngModel">
|
||||
<ng-template rbFormValidationMessage="failure">{{locationInput.errors.failure}}</ng-template>
|
||||
<ng-template rbFormValidationMessage="required">Cannot be empty</ng-template>
|
||||
@ -100,13 +101,13 @@
|
||||
<td>
|
||||
<rb-array-input [(ngModel)]="user.devices" name="devices" [pushTemplate]="''">
|
||||
<rb-form-input *rbArrayInputItem="let item" rbArrayInputListener="devices" [index]="item.i"
|
||||
label="device" appValidate="string" [name]="'device-' + item.i" [ngModel]="item.value">
|
||||
appValidate="string" [name]="'device-' + item.i" [ngModel]="item.value">
|
||||
</rb-form-input>
|
||||
</rb-array-input>
|
||||
</td>
|
||||
<td>
|
||||
<rb-array-input [(ngModel)]="user.models" name="devices" [pushTemplate]="''">
|
||||
<rb-form-select *rbArrayInputItem="let item" rbArrayInputListener="models" [index]="item.i" label="model"
|
||||
<rb-form-select *rbArrayInputItem="let item" rbArrayInputListener="models" [index]="item.i"
|
||||
[name]="'model-' + item.i" [ngModel]="item.value">
|
||||
<ng-container *ngTemplateOutlet="modelOptions"></ng-container>
|
||||
</rb-form-select>
|
||||
|
Reference in New Issue
Block a user