mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-23 10:32:17 -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
|
||||
:class="$style.pagination"
|
||||
v-if="hasNodeRun && !hasRunError && dataCount > pageSize && !isSchemaView"
|
||||
v-if="
|
||||
hasNodeRun &&
|
||||
!hasRunError &&
|
||||
binaryData.length === 0 &&
|
||||
dataCount > pageSize &&
|
||||
!isSchemaView
|
||||
"
|
||||
v-show="!editMode.enabled"
|
||||
>
|
||||
<el-pagination
|
||||
|
|
Loading…
Reference in a new issue