-
+
+
{{ $t('activity.addFiles') }}
@@ -389,56 +374,42 @@ defineExpose({
ref="sortableRef"
:class="{
'justify-center': !isGallery && !isKanban,
- 'py-1': rowHeight === 1,
- 'py-1.5 !gap-4 ': rowHeight !== 1,
}"
- class="nc-attachment-wrapper flex cursor-pointer w-full items-center flex-wrap gap-3 nc-scrollbar-thin mt-0 items-start px-[1px]"
+ class="nc-attachment-wrapper flex cursor-pointer w-full items-center flex-wrap gap-2 mt-0 items-start overflow-y-auto nc-scrollbar-thin"
:style="{
- maxHeight: `max(100%, ${isGrid ? '22px' : '32px'})`,
+ height: `max(${!rowHeight || rowHeight === 1 ? rowHeightInPx['1']: rowHeightInPx[`${rowHeight}`] - 17}px, ${isGrid ? 22 : 32}px)`,
+ paddingTop: !rowHeight || rowHeight === 1 ? '4px !important' : undefined,
+ paddingBottom: !rowHeight || rowHeight === 1 ? '4px !important' : undefined,
}"
>
-
-
-
- {{ item.title }}
-
-
-
onFileClick(item)"
- >
-
-
-
+
+
+ {{ item.title }}
+
+
+
onFileClick(item)"
+ />
-
-
-
+
-
-
+
+
-
+
diff --git a/packages/nc-gui/components/workspace/integrations/ConnectionsTab.vue b/packages/nc-gui/components/workspace/integrations/ConnectionsTab.vue
index e219210d9e..c5ea772a2e 100644
--- a/packages/nc-gui/components/workspace/integrations/ConnectionsTab.vue
+++ b/packages/nc-gui/components/workspace/integrations/ConnectionsTab.vue
@@ -464,7 +464,6 @@ onKeyStroke('ArrowDown', onDown)