bugfix: compose window closing tags should be TD

This commit is contained in:
the-djmaze 2024-03-19 13:09:23 +01:00
parent f36c9ab7d6
commit d2a99ad7f2

View file

@ -110,25 +110,25 @@
</td> </td>
</tr> </tr>
<tr class="cc-row" data-bind="visible: showCc"> <tr class="cc-row" data-bind="visible: showCc">
<td data-i18n="GLOBAL/CC"></div> <td data-i18n="GLOBAL/CC"></td>
<td> <td>
<input type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="emailsTags: cc, autoCompleteSource: emailsSource"> <input type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="emailsTags: cc, autoCompleteSource: emailsSource">
</td> </td>
</tr> </tr>
<tr class="bcc-row" data-bind="visible: showBcc"> <tr class="bcc-row" data-bind="visible: showBcc">
<td data-i18n="GLOBAL/BCC"></div> <td data-i18n="GLOBAL/BCC"></td>
<td> <td>
<input type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="emailsTags: bcc, autoCompleteSource: emailsSource"> <input type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="emailsTags: bcc, autoCompleteSource: emailsSource">
</td> </td>
</tr> </tr>
<tr class="reply-to-row" data-bind="visible: showReplyTo"> <tr class="reply-to-row" data-bind="visible: showReplyTo">
<td data-i18n="GLOBAL/REPLY_TO"></div> <td data-i18n="GLOBAL/REPLY_TO"></td>
<td> <td>
<input type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="emailsTags: replyTo"> <input type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="emailsTags: replyTo">
</td> </td>
</tr> </tr>
<tr> <tr>
<td data-i18n="GLOBAL/SUBJECT"></div> <td data-i18n="GLOBAL/SUBJECT"></td>
<td> <td>
<input type="text" name="subject" autocomplete="off" data-bind="textInput: subject, attr:{spellcheck:allowSpellcheck()?'true':'false'}"> <input type="text" name="subject" autocomplete="off" data-bind="textInput: subject, attr:{spellcheck:allowSpellcheck()?'true':'false'}">
</td> </td>