Skip to content

Commit

Permalink
fix(editor): Remove pagination from binary data output (#6093)
Browse files Browse the repository at this point in the history
🐛 Remove pagination from binary data output
  • Loading branch information
ivov authored Apr 27, 2023
1 parent 2c240a0 commit c6e665a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/editor-ui/src/components/RunData.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c6e665a

Please sign in to comment.