mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-26 21:19:43 -08:00
🐛 Fix issue that JSON view could not be selected anymore
This commit is contained in:
parent
888f01b343
commit
295bd212ce
|
@ -80,7 +80,7 @@
|
||||||
<div v-if="jsonData.length === 0" class="no-data">
|
<div v-if="jsonData.length === 0" class="no-data">
|
||||||
No text data found
|
No text data found
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="showData === true || displayMode === 'Table'">
|
<div v-else-if="displayMode === 'Table'">
|
||||||
<div v-if="tableData !== null && tableData.columns.length === 0" class="no-data">
|
<div v-if="tableData !== null && tableData.columns.length === 0" class="no-data">
|
||||||
Entries exist but they do not contain any JSON data.
|
Entries exist but they do not contain any JSON data.
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue