File tree 1 file changed +21
-1
lines changed
packages/editor-ui/src/components 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
2
<Modal
3
3
width =" 460px"
4
+ max-height =" 75%"
4
5
:title =" modalTitle"
5
6
:event-bus =" modalBus"
6
7
:name =" WORKFLOW_SHARE_MODAL_KEY"
30
31
})
31
32
}}
32
33
</n8n-info-tip >
33
- <enterprise-edition :features =" [EnterpriseEditionFeature.Sharing]" >
34
+ <enterprise-edition :features =" [EnterpriseEditionFeature.Sharing]" :class = " $style.content " >
34
35
<n8n-user-select
35
36
v-if =" workflowPermissions.updateSharing"
36
37
class =" mb-s"
51
52
:current-user-id =" currentUser.id"
52
53
:delete-label =" $locale.baseText('workflows.shareModal.list.delete')"
53
54
:readonly =" !workflowPermissions.updateSharing"
55
+ :class =" $style.usersList"
54
56
>
55
57
<template #actions =" { user } " >
56
58
<n8n-select
@@ -486,10 +488,28 @@ export default defineComponent({
486
488
</script >
487
489
488
490
<style module lang="scss">
491
+ .container {
492
+ display : flex ;
493
+ flex-direction : column ;
494
+ height : 100% ;
495
+ }
496
+
489
497
.container > * {
490
498
overflow-wrap : break-word ;
491
499
}
492
500
501
+ .content {
502
+ display : flex ;
503
+ flex-direction : column ;
504
+ height : 100% ;
505
+ overflow-y : auto ;
506
+ }
507
+
508
+ .usersList {
509
+ height : 100% ;
510
+ overflow-y : auto ;
511
+ }
512
+
493
513
.actionButtons {
494
514
display : flex ;
495
515
justify-content : flex-end ;
You can’t perform that action at this time.
0 commit comments