- {showIconOrExpandActionGutter ?
: null}
+ {showIconOrExpandActionGutter || isBulkSelectionConfigured ? (
+
+ ) : null}
{SHIMMER_DUMMY_ARRAY.map((shimmerCellLabel) => (
))}
@@ -314,7 +319,7 @@ const TableContent = <
))
}
- if (areFilteredRowsLoading || (loading && visibleColumns.length)) {
+ if ((loading && numberOfColumnsWithoutBulkActionGutter.length) || areFilteredRowsLoading) {
return SHIMMER_DUMMY_ARRAY.map((shimmerRowLabel) => (
).expandableRows && !rowStartIconConfig)) && (
)}
@@ -524,9 +533,11 @@ const TableContent = <
ref={headerRef}
className="bg__primary dc__min-width-fit-content px-20 border__secondary--bottom dc__position-sticky dc__zi-2 dc__top-0 generic-table__header"
>
- {loading && !visibleColumns.length ? (
+ {loading && !numberOfColumnsWithoutBulkActionGutter.length ? (
- {showIconOrExpandActionGutter ?
: null}
+ {showIconOrExpandActionGutter || isBulkSelectionConfigured ? (
+
+ ) : null}
{SHIMMER_DUMMY_ARRAY.map((label) => (
))}
diff --git a/src/Shared/Components/Table/types.ts b/src/Shared/Components/Table/types.ts
index a45d2b7f8..4498584b9 100644
--- a/src/Shared/Components/Table/types.ts
+++ b/src/Shared/Components/Table/types.ts
@@ -291,7 +291,7 @@ export type InternalTableProps<
emptyStateConfig: {
noRowsConfig: Omit
- noRowsForFilterConfig?: Pick & {
+ noRowsForFilterConfig?: Pick & {
clearFilters?: () => void
}
}
diff --git a/src/Shared/Providers/MainContextProvider/types.ts b/src/Shared/Providers/MainContextProvider/types.ts
index cff7ce452..6f09df3c2 100644
--- a/src/Shared/Providers/MainContextProvider/types.ts
+++ b/src/Shared/Providers/MainContextProvider/types.ts
@@ -217,6 +217,8 @@ export type MainContext = CommonMainContextProps &
AIRecommendations?: FunctionComponent
featureAskDevtronExpert: EnvironmentDataValuesDTO['featureAskDevtronExpert']
AskDevtronButton?: FunctionComponent
+ showUpgradeToOSSPlusDialog: boolean
+ setShowUpgradeToOSSPlusDialog: (show: boolean) => void
}
| {
isLicenseDashboard: true
@@ -238,6 +240,8 @@ export type MainContext = CommonMainContextProps &
AIRecommendations?: null
featureAskDevtronExpert?: null
AskDevtronButton?: null
+ showUpgradeToOSSPlusDialog?: null
+ setShowUpgradeToOSSPlusDialog?: null
}
)
diff --git a/src/Shared/types.ts b/src/Shared/types.ts
index 1179c6df8..e96b02019 100644
--- a/src/Shared/types.ts
+++ b/src/Shared/types.ts
@@ -1215,6 +1215,7 @@ export type IconBaseSizeType =
| 42
| 44
| 48
+ | 56
| 64
| 72
| 80
diff --git a/src/index.ts b/src/index.ts
index 6ccacbbaa..e32946bf9 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -55,7 +55,6 @@ export interface customEnv {
HIDE_EXCLUDE_INCLUDE_GIT_COMMITS?: boolean
ENABLE_BUILD_CONTEXT?: boolean
CLAIR_TOOL_VERSION?: string
- ENABLE_RESTART_WORKLOAD?: boolean
ENABLE_SCOPED_VARIABLES?: boolean
DEFAULT_CI_TRIGGER_TYPE_MANUAL: boolean
ANNOUNCEMENT_BANNER_MSG?: string