#3296 fix - Increasing matadata value column length and decrease the key
column to 100
| .. | .. |
|---|
| 3 | 3 | <modelVersion>4.0.0</modelVersion> |
|---|
| 4 | 4 | <groupId>net.curisit</groupId> |
|---|
| 5 | 5 | <artifactId>securis-server</artifactId> |
|---|
| 6 | | - <version>1.1.6</version> |
|---|
| 6 | + <version>1.1.7</version> |
|---|
| 7 | 7 | <name>SeCuris</name> |
|---|
| 8 | 8 | <description>CurisTEC Server Licenses</description> |
|---|
| 9 | 9 | <dependencies> |
|---|
| .. | .. |
|---|
| 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" |
|---|
| .. | .. |
|---|
| 252 | 252 | <td><input type="text" id="md_key" name="md_key" |
|---|
| 253 | 253 | placeholder="" ng-readonly="true" |
|---|
| 254 | 254 | class="form-control" ng-model="row_md['key']" |
|---|
| 255 | | - ng-required="true" /></td> |
|---|
| 255 | + ng-required="true" ng-maxlength="100" /></td> |
|---|
| 256 | 256 | <td><input type="text" id="md_value" name="md_value" ng-readonly="row_md['readonly']" |
|---|
| 257 | 257 | placeholder="" class="form-control" ng-model="row_md['value']" |
|---|
| 258 | | - ng-required="row_md['mandatory']" ng-maxlength="150" /></td> |
|---|
| 258 | + ng-required="row_md['mandatory']" ng-maxlength="500" /></td> |
|---|
| 259 | 259 | </tr> |
|---|
| 260 | 260 | </tbody> |
|---|
| 261 | 261 | </table> |
|---|