Skip to content

Commit 4c68c16

Browse files
committed
fix: error over dropdown in dynamic data table
1 parent 36862fd commit 4c68c16

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devtron-labs/devtron-fe-common-lib",
3-
"version": "1.3.0-beta-6",
3+
"version": "1.3.0-beta-7",
44
"description": "Supporting common component library",
55
"type": "module",
66
"main": "dist/index.js",

src/Common/DraggableWrapper/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ export interface DraggableWrapperProps {
3939
childDivProps?: HTMLAttributes<HTMLDivElement>
4040
/**
4141
* Delta for fixing the scrollable layout positioning
42+
* @deprecated
4243
*/
4344
layoutFixDelta?: number
4445
}

src/Common/Types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,7 @@ export interface Strategy {
814814
default?: boolean
815815
}
816816

817-
export interface CDStage extends Partial<Pick<CommonNodeAttr, 'triggerBlockedInfo'>> {
817+
export interface CDStage extends Partial<Pick<CommonNodeAttr, 'triggerBlockedInfo' | 'isTriggerBlocked' >> {
818818
status: string
819819
name: string
820820
triggerType: 'AUTOMATIC' | 'MANUAL'

src/Shared/Components/DynamicDataTable/styles.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@
8585
padding: 8px !important;
8686
}
8787

88+
&__select-picker__menu-portal {
89+
z-index: 3 !important;
90+
}
91+
8892
&:has(.select-picker-hidden) .dynamic-data-table__select-text-area {
8993
padding-left: 8px;
9094
}

0 commit comments

Comments
 (0)