diff --git a/packages/editor-ui/src/components/RunData.vue b/packages/editor-ui/src/components/RunData.vue index 5bd74286f2..33acd81156 100644 --- a/packages/editor-ui/src/components/RunData.vue +++ b/packages/editor-ui/src/components/RunData.vue @@ -69,115 +69,117 @@ -
-
-
- {{ $locale.baseText('node.output.executing') }} -
- {{ $locale.baseText('node.output.runNodeHint') }} -
- -
- -
- -
- {{ $locale.baseText('node.output.noOutputData.title') }} - - {{ $locale.baseText('node.output.noOutputData.message') }} - {{ $locale.baseText('node.output.noOutputData.message.settings') }} - {{ $locale.baseText('node.output.noOutputData.message.settingsOption') }} - -
- -
- {{ $locale.baseText('node.output.tooMuchData.title') }} - - - -
- -
- - - - - - - -
- {{ $locale.baseText('node.output.emptyOutput') }} -
-
- -
- - - - - - - -
{{column}}
{{ [null, undefined].includes(data) ? ' ' : data }}
-
- -
- -
- -
- {{ $locale.baseText('runData.noBinaryDataFound') }} -
- -
-
-
-
- {{index + 1}} -
+
+
+
+
+ {{ $locale.baseText('node.output.executing') }}
+ {{ $locale.baseText('node.output.runNodeHint') }} +
-
-
-
-
- {{key}} -
-
-
{{ $locale.baseText('runData.fileName') }}:
-
{{binaryData.fileName}}
-
-
-
{{ $locale.baseText('runData.directory') }}:
-
{{binaryData.directory}}
-
-
-
{{ $locale.baseText('runData.fileExtension') }}:
-
{{binaryData.fileExtension}}
-
-
-
{{ $locale.baseText('runData.mimeType') }}:
-
{{binaryData.mimeType}}
-
+
+ +
-
- +
+ {{ $locale.baseText('node.output.noOutputData.title') }} + + {{ $locale.baseText('node.output.noOutputData.message') }} + {{ $locale.baseText('node.output.noOutputData.message.settings') }} + {{ $locale.baseText('node.output.noOutputData.message.settingsOption') }} + +
+ +
+ {{ $locale.baseText('node.output.tooMuchData.title') }} + + + +
+ +
+ + + + + + + +
+ {{ $locale.baseText('node.output.emptyOutput') }} +
+
+ +
+ + + + + + + +
{{column}}
{{ [null, undefined].includes(data) ? ' ' : data }}
+
+ +
+ +
+ +
+ {{ $locale.baseText('runData.noBinaryDataFound') }} +
+ +
+
+
+
+ {{index + 1}} +
+
+ +
+
+
+
+ {{key}} +
+
+
{{ $locale.baseText('runData.fileName') }}:
+
{{binaryData.fileName}}
+
+
+
{{ $locale.baseText('runData.directory') }}:
+
{{binaryData.directory}}
+
+
+
{{ $locale.baseText('runData.fileExtension') }}:
+
{{binaryData.fileExtension}}
+
+
+
{{ $locale.baseText('runData.mimeType') }}:
+
{{binaryData.mimeType}}
+
+ +
+ +
@@ -724,6 +726,8 @@ export default mixins( width: 100%; height: 100%; background-color: var(--color-background-light); + display: flex; + flex-direction: column; } .header { @@ -737,16 +741,21 @@ export default mixins( } } +.dataContainer { + position: relative; + height: 100%; +} + .dataDisplay { position: absolute; - bottom: 0; - top: 130px; + top: 0; left: 0; padding-left: var(--spacing-s); right: 0; overflow-y: auto; line-height: 1.5; word-break: normal; + height: 100%; } .tableDisplay {