Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug: Edit Table keeps trailing empty lines in grid table #962

Closed
jbridgy opened this issue Jun 2, 2022 · 1 comment
Closed

Bug: Edit Table keeps trailing empty lines in grid table #962

jbridgy opened this issue Jun 2, 2022 · 1 comment

Comments

@jbridgy
Copy link

jbridgy commented Jun 2, 2022

Edit Table of mm v2.5.12 keeps trailing empty lines within cells of a grid table.

Original grid table:

+----------+----------+
| Header 1 | Header 2 |
+==========+==========+
| 1        | 1        |
| 2        | 2        |
| 3        |          |
| 4        |          |
+----------+----------+

image

After deleting line 4 in cell A2 using Edit Table:

image

+----------+----------+
| Header 1 | Header 2 |
+==========+==========+
| 1        | 1        |
| 2        | 2        |
| 3        |          |
|          |          |
+----------+----------+

Expected:

+----------+----------+
| Header 1 | Header 2 |
+==========+==========+
| 1        | 1        |
| 2        | 2        |
| 3        |          |
+----------+----------+
@RickStrahl
Copy link
Owner

RickStrahl commented Jun 26, 2022

Fixed 2.5.19+

Fixed at the source when the values are pulled out of the HTML which should potentially fix a few other related issues.

TableBugsFixed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants