fix(editor): Remove pagination from binary data output (#6093)

🐛 Remove pagination from binary data output
This commit is contained in:
Iván Ovejero 2023-04-27 14:30:00 +02:00 committed by GitHub
parent 2c240a0e4e
commit c6e665a975
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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