Skip to content

Commit

Permalink
fix(editor): Fix spaces bug (#3774)
Browse files Browse the repository at this point in the history
  • Loading branch information
mutdmour authored Jul 26, 2022
1 parent 81b5828 commit 02549e3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/editor-ui/src/components/RunDataTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 02549e3

Please sign in to comment.