changed type names

This commit is contained in:
VLE2FE 2020-08-12 11:20:45 +02:00
parent 737ba40817
commit 8a44135d9a
2 changed files with 5 additions and 6 deletions

View File

@ -22,10 +22,10 @@
<tr> <tr>
<td>type</td> <td>type</td>
<td> <td>
The material status of the sample, can be either <span class="name">granulate</span>, <span class="name">part The material status of the sample, can be either <span class="name">as-delivered/raw</span> or
</span> or <span class="name">tension rod</span>. <span class="name">processed</span>.
</td> </td>
<td>'granulate'</td> <td>'processed'</td>
</tr> </tr>
<tr> <tr>
<td>number</td> <td>number</td>

View File

@ -62,9 +62,8 @@
<div> <div>
<rb-form-select name="type" label="type" required [(ngModel)]="sample.type" ngModel <rb-form-select name="type" label="type" required [(ngModel)]="sample.type" ngModel
title="material status of the sample"> title="material status of the sample">
<option value="granulate">granulate</option> <option value="as-delivered/raw">as-delivered/raw</option>
<option value="part">part</option> <option value="processed">processed</option>
<option value="tension rod">tension rod</option>
<ng-template rbFormValidationMessage="required">Cannot be empty</ng-template> <ng-template rbFormValidationMessage="required">Cannot be empty</ng-template>
</rb-form-select> </rb-form-select>
<rb-form-input name="color" label="color" appValidate="string" [(ngModel)]="sample.color" <rb-form-input name="color" label="color" appValidate="string" [(ngModel)]="sample.color"