Fix textarea usage in manager forms (fixes: #2196)

This commit is contained in:
Xavier Guimard 2020-05-16 21:45:36 +02:00
parent 6b4bb8c72c
commit 66588175f2
6 changed files with 7 additions and 7 deletions

View File

@ -19,7 +19,7 @@
</div>
</div>
<div class="panel-body input-group maxw" ng-if="currentNode.data!==0&&currentNode.data!=='0'&&currentNode.data!==1&&currentNode.data!=='1'">
<textarea id="bopeValue" class="form-control" rows="2" ng-model="currentNode.data" aria-labelledby="rulel"/>
<textarea id="bopeValue" class="form-control" rows="2" ng-model="currentNode.data" aria-labelledby="rulel"></textarea>
</div>
</div>
<script type="text/menu">

View File

@ -13,7 +13,7 @@
</tr>
<tr>
<th><span trspan="message"></span></th>
<td><textarea rows="3" id="rulemessage" class="form-control" ng-model="currentNode.re"/></td>
<td><textarea rows="3" id="rulemessage" class="form-control" ng-model="currentNode.re"></textarea></td>
</tr>
</table>
</div>

View File

@ -5,7 +5,7 @@
<div class="panel-body">
<div class="input-group maxw">
<label class="input-group-addon" for="longtextinput" trspan="value"></label>
<textarea id="longtextinput" rows="5" class="form-control" ng-model="currentNode.data"/>
<textarea id="longtextinput" rows="5" class="form-control" ng-model="currentNode.data"></textarea>
</div>
</div>
</div>

View File

@ -81,7 +81,7 @@
</tr>
</table>
<div class="panel-body input-group maxw" ng-if="currentNode.data.display!=='on'&&currentNode.data.display!=='off'&&currentNode.data.display!=='auto'">
<textarea id="iValue" class="form-control" rows="2" ng-model="currentNode.data.display" aria-label="Rule expression"/>
<textarea id="iValue" class="form-control" rows="2" ng-model="currentNode.data.display" aria-label="Rule expression"></textarea>
</div>
</div>
<script type="text/ng-template" id="logoChoice.html">

View File

@ -15,7 +15,7 @@
</tr>
<tr>
<th><span trspan="rule"></span></th>
<td><textarea rows="3" id="hashvalueinput" class="form-control" ng-model="currentNode.data"/></td>
<td><textarea rows="3" id="hashvalueinput" class="form-control" ng-model="currentNode.data"></textarea></td>
</tr>
<tr ng-if="currentNode.re!='default'">
<th><span trspan="ruleAuthnLevel"></span></th>

View File

@ -17,7 +17,7 @@
<!-- LONG TEXT -->
<td ng-if="n.type=='longtext'">
<div class="input-group maxw">
<textarea rows="2" ng-model="n.data" />
<textarea rows="2" ng-model="n.data"></textarea>
</div>
</td>
<!-- INT -->
@ -71,7 +71,7 @@
</label>
</div>
<div class="panel-body input-group maxw" ng-if="n.data!==0&&n.data!=='0'&&n.data!==1&&n.data!=='1'">
<textarea id="boeValue/{{n.title}}" class="form-control" rows="2" ng-model="n.data"/>
<textarea id="boeValue/{{n.title}}" class="form-control" rows="2" ng-model="n.data"></textarea>
</div>
</td>
<!-- SELECT -->