| .. | .. |
|---|
| 73 | 73 | <tbody> |
|---|
| 74 | 74 | <tr ng-repeat="row_md in formu['metadata']" > |
|---|
| 75 | 75 | <td><input type="text" id="md_key" name="md_key" placeholder="" ng-readonly="!field.allow_creation" |
|---|
| 76 | | - class="form-control" ng-model="row_md['key']" ng-required="true" ng-maxlength="150" /> |
|---|
| 76 | + class="form-control" ng-model="row_md['key']" ng-required="true" ng-maxlength="100" /> |
|---|
| 77 | 77 | </td> |
|---|
| 78 | 78 | <td> |
|---|
| 79 | 79 | <input type="text" id="md_value" name="md_value" placeholder="" |
|---|
| 80 | | - class="form-control" ng-model="row_md['value']" ng-required="false" ng-maxlength="150" /> |
|---|
| 80 | + class="form-control" ng-model="row_md['value']" ng-required="false" ng-maxlength="500" /> |
|---|
| 81 | 81 | </td> |
|---|
| 82 | 82 | <td> |
|---|
| 83 | 83 | <input type="checkbox" id="md_mandatory" name="md_mandatory" ng-disabled="!field.allow_creation" |
|---|