mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 12:44:07 -08:00
fix(editor): fix binary data view bug (#4298)
This commit is contained in:
parent
9b042c4923
commit
f40f6620c8
|
@ -178,7 +178,7 @@
|
|||
{{ $locale.baseText('nodeErrorView.inputPanel.previousNodeError.text') }}
|
||||
</n8n-link>
|
||||
</n8n-text>
|
||||
<NodeErrorView v-else :error="workflowRunData[node.name][runIndex].error" :class="$style.errorDisplay" />
|
||||
<NodeErrorView v-else :error="workflowRunData[node.name][runIndex].error" :class="$style.dataDisplay" />
|
||||
</div>
|
||||
|
||||
<div v-else-if="hasNodeRun && jsonData && jsonData.length === 0 && branches.length > 1" :class="$style.center">
|
||||
|
@ -1161,7 +1161,7 @@ export default mixins(
|
|||
}
|
||||
}
|
||||
|
||||
.errorDisplay {
|
||||
.dataDisplay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
|
Loading…
Reference in a new issue