-
Type:
Bug
-
Resolution: Obsolete
-
Priority:
Low
-
None
-
Affects Version/s: 4.1.4
-
Component/s: None
Hi
This is the code of a simple table generate by the editor
<table>
<tbody>
<tr>
<th>1</th>
<th>2</th>
</tr>
<tr>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>5</td>
<td>6</td>
</tr>
<tr>
<td>7</td>
<td>8</td>
</tr>
</tbody>
</table>
If if I go in a cell (4 for example) type a carriage return and delete it, the line containing this cell is now higher than the others.
The code for the table is now:
<table>
<tbody>
<tr>
<th>1</th>
<th>2</th>
</tr>
<tr>
<td>3</td>
<td>
<p>4</p>
</td>
</tr>
<tr>
<td>5</td>
<td>6</td>
</tr>
<tr>
<td>7</td>
<td>8</td>
</tr>
</tbody>
</table>
- is duplicated by
-
CONFSERVER-24801 Hitting ENTER in a table field creates extra space in the row
-
- Closed
-
- mentioned in
-
Wiki Page Loading...