Merge #19564 - Fix #19118 - update table comment field to textarea

Pull-request: #19564
Fixes: #19118
Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
William Desportes 2025-12-05 14:43:39 +01:00
commit 150c4417c9
No known key found for this signature in database
GPG Key ID: 70684F4717D49A31
2 changed files with 14 additions and 7 deletions

View File

@ -81,12 +81,12 @@
</tr>
<tr>
<td>
<input type="text"
name="comment"
size="40"
maxlength="60"
value="{{ comment is defined ? comment }}"
class="textfield">
<textarea
name="comment"
maxlength="2048"
class="textfield"
rows="1"
cols="30">{{ comment is defined ? comment }}</textarea>
</td>
<td width="25">&nbsp;</td>
<td>

View File

@ -124,7 +124,14 @@
<label for="tableCommentsInput">{{ t('Table comments') }}</label>
</div>
<div class="col-6">
<input class="form-control" id="tableCommentsInput" type="text" name="comment" maxlength="2048" value="{{ table_comment }}">
<textarea
id="tableCommentsInput"
class="form-control"
name="comment"
maxlength="2048"
class="textfield"
rows="1"
cols="30">{{ table_comment }}</textarea>
</div>
</div>