Skip to content

Commit a874255

Browse files
authored
Merge pull request #293 from devtron-labs/fix/deployment-history-config
fix: css for config list
2 parents 057936d + 3d604f2 commit a874255

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
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": "0.2.17-beta-4",
3+
"version": "0.2.17-patch-3",
44
"description": "Supporting common component library",
55
"type": "module",
66
"main": "dist/index.js",

src/Shared/Components/CICDHistory/DeploymentHistoryDiff/DeploymentHistoryConfigList.component.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@ const DeploymentHistoryConfigList = ({
8484
deploymentHistoryList &&
8585
deploymentHistoryList.map((historicalComponent, index) => (
8686
// eslint-disable-next-line react/no-array-index-key
87-
<div className="px-20 pt-20 fs-13 cn-9" key={`history-list__${index}`}>
87+
<div className="px-20 pt-20 fs-13 cn-9 flexbox-col dc__gap-12" key={`history-list__${index}`}>
8888
{historicalComponent.childList?.length > 0 ? (
8989
<>
90-
<div className="fs-14 fw-6 mb-12">
90+
<div className="fs-14 fw-6">
9191
{DEPLOYMENT_HISTORY_CONFIGURATION_LIST_MAP[historicalComponent.name].DISPLAY_NAME}
9292
</div>
9393
{historicalComponent.childList.map((historicalComponentName, childIndex) =>

0 commit comments

Comments
 (0)