fix(editor): Fix spaces bug (#3774)

This commit is contained in:
Mutasem Aldmour 2022-07-26 14:49:38 +02:00 committed by GitHub
parent 81b5828558
commit 02549e3ba9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,9 +54,7 @@
:data-col="index2"
@mouseenter="onMouseEnterCell"
@mouseleave="onMouseLeaveCell"
>
{{ [null, undefined].includes(data) ? ' ' : data }}
</td>
>{{ [null, undefined].includes(data) ? '&nbsp;' : data }}</td>
</tr>
</tbody>
</table>