fix(editor): Fix rendering of AI logs (#11450)

This commit is contained in:
oleg
2024-10-31 14:20:04 +01:00
committed by GitHub
parent 5d19e8f2b4
commit 73b0a80ac9
6 changed files with 97 additions and 83 deletions

View File

@@ -162,6 +162,10 @@ export default defineComponent({
type: Boolean,
default: false,
},
hidePagination: {
type: Boolean,
default: false,
},
},
setup(props) {
const ndvStore = useNDVStore();
@@ -1743,6 +1747,7 @@ export default defineComponent({
</div>
<div
v-if="
hidePagination === false &&
hasNodeRun &&
!hasRunError &&
displayMode !== 'binary' &&