mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
fix(editor): Remove pagination from binary data output (#6093)
🐛 Remove pagination from binary data output
This commit is contained in:
parent
2c240a0e4e
commit
c6e665a975
|
@ -429,7 +429,13 @@
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
:class="$style.pagination"
|
:class="$style.pagination"
|
||||||
v-if="hasNodeRun && !hasRunError && dataCount > pageSize && !isSchemaView"
|
v-if="
|
||||||
|
hasNodeRun &&
|
||||||
|
!hasRunError &&
|
||||||
|
binaryData.length === 0 &&
|
||||||
|
dataCount > pageSize &&
|
||||||
|
!isSchemaView
|
||||||
|
"
|
||||||
v-show="!editMode.enabled"
|
v-show="!editMode.enabled"
|
||||||
>
|
>
|
||||||
<el-pagination
|
<el-pagination
|
||||||
|
|
Loading…
Reference in a new issue