mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(editor): Fix DataTable
markup (no-changelog) (#11205)
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
parent
5a1d81ad91
commit
a6664ef3a2
|
@ -390,25 +390,29 @@ export default defineComponent({
|
||||||
<template>
|
<template>
|
||||||
<div :class="[$style.dataDisplay, { [$style.highlight]: highlight }]">
|
<div :class="[$style.dataDisplay, { [$style.highlight]: highlight }]">
|
||||||
<table v-if="tableData.columns && tableData.columns.length === 0" :class="$style.table">
|
<table v-if="tableData.columns && tableData.columns.length === 0" :class="$style.table">
|
||||||
<tr>
|
<thead>
|
||||||
<th :class="$style.emptyCell"></th>
|
<tr>
|
||||||
<th :class="$style.tableRightMargin"></th>
|
<th :class="$style.emptyCell"></th>
|
||||||
</tr>
|
<th :class="$style.tableRightMargin"></th>
|
||||||
<tr
|
</tr>
|
||||||
v-for="(_, index1) in tableData.data"
|
</thead>
|
||||||
:key="index1"
|
<tbody>
|
||||||
:class="{ [$style.hoveringRow]: isHoveringRow(index1) }"
|
<tr
|
||||||
>
|
v-for="(_, index1) in tableData.data"
|
||||||
<td
|
:key="index1"
|
||||||
:data-row="index1"
|
:class="{ [$style.hoveringRow]: isHoveringRow(index1) }"
|
||||||
:data-col="0"
|
|
||||||
@mouseenter="onMouseEnterCell"
|
|
||||||
@mouseleave="onMouseLeaveCell"
|
|
||||||
>
|
>
|
||||||
<n8n-info-tip>{{ $locale.baseText('runData.emptyItemHint') }}</n8n-info-tip>
|
<td
|
||||||
</td>
|
:data-row="index1"
|
||||||
<td :class="$style.tableRightMargin"></td>
|
:data-col="0"
|
||||||
</tr>
|
@mouseenter="onMouseEnterCell"
|
||||||
|
@mouseleave="onMouseLeaveCell"
|
||||||
|
>
|
||||||
|
<n8n-info-tip>{{ $locale.baseText('runData.emptyItemHint') }}</n8n-info-tip>
|
||||||
|
</td>
|
||||||
|
<td :class="$style.tableRightMargin"></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<table v-else :class="$style.table">
|
<table v-else :class="$style.table">
|
||||||
<thead>
|
<thead>
|
||||||
|
|
Loading…
Reference in a new issue