mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
fix(editor): fix bug where one cannot scroll down parameters (#4348)
This commit is contained in:
@@ -410,10 +410,6 @@ export default Vue.extend({
|
|||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.double-width {
|
|
||||||
left: 90%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dragButtonContainer {
|
.dragButtonContainer {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: -12px;
|
top: -12px;
|
||||||
|
|||||||
@@ -32,7 +32,6 @@
|
|||||||
:hideInputAndOutput="activeNodeType === null"
|
:hideInputAndOutput="activeNodeType === null"
|
||||||
:position="isTriggerNode && !showTriggerPanel ? 0 : undefined"
|
:position="isTriggerNode && !showTriggerPanel ? 0 : undefined"
|
||||||
:isDraggable="!isTriggerNode"
|
:isDraggable="!isTriggerNode"
|
||||||
:hasDoubleWidth="activeNodeType && activeNodeType.parameterPane === 'wide'"
|
|
||||||
:nodeType="activeNodeType"
|
:nodeType="activeNodeType"
|
||||||
@close="close"
|
@close="close"
|
||||||
@init="onPanelsInit"
|
@init="onPanelsInit"
|
||||||
|
|||||||
@@ -818,7 +818,7 @@ export default mixins(externalHooks, genericHelpers, nodeHelpers).extend({
|
|||||||
.node-parameters-wrapper {
|
.node-parameters-wrapper {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
padding: 0 20px;
|
padding: 0 20px 200px 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.dragging {
|
&.dragging {
|
||||||
|
|||||||
Reference in New Issue
Block a user