mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
fix(editor): Fix spaces bug (#3774)
This commit is contained in:
parent
81b5828558
commit
02549e3ba9
|
@ -54,9 +54,7 @@
|
|||
:data-col="index2"
|
||||
@mouseenter="onMouseEnterCell"
|
||||
@mouseleave="onMouseLeaveCell"
|
||||
>
|
||||
{{ [null, undefined].includes(data) ? ' ' : data }}
|
||||
</td>
|
||||
>{{ [null, undefined].includes(data) ? ' ' : data }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
Loading…
Reference in a new issue