Skip to content

Commit a8bce6c

Browse files
committed
chore: update version to 1.13.0-beta-6 and improve AppStatusModal styles
1 parent 4d458a0 commit a8bce6c

File tree

5 files changed

+8
-8
lines changed

5 files changed

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

src/Shared/Components/AppStatusModal/AppStatusBody.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { getAppStatusMessageFromAppDetails } from './utils'
1818

1919
const InfoCardItem = ({ heading, value, isLast = false }: { heading: string; value: ReactNode; isLast?: boolean }) => (
2020
<div
21-
className={`py-12 px-16 dc__grid dc__column-gap-16 info-card-item dc__align-items-center ${!isLast ? 'border__secondary--bottom' : ''}`}
21+
className={`py-12 px-16 dc__grid dc__column-gap-16 info-card-item ${!isLast ? 'border__secondary--bottom' : ''}`}
2222
>
2323
<Tooltip content={heading}>
2424
<h3 className="cn-9 fs-13 fw-4 lh-1-5 dc__truncate m-0 dc__no-shrink">{heading}</h3>

src/Shared/Components/AppStatusModal/AppStatusModal.component.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -341,12 +341,12 @@ const AppStatusModal = ({
341341
return (
342342
<Drawer position="right" width="1024px" onClose={handleClose} onEscape={handleClose}>
343343
<div
344-
className="flexbox-col dc__content-space h-100 border__primary--left bg__modal--primary shadow__modal app-status-modal"
344+
className="flexbox-col dc__content-space h-100 bg__modal--primary shadow__modal app-status-modal"
345345
onClick={stopPropagation}
346346
>
347347
<div className="app-status-modal__header pt-12 flexbox-col px-20 dc__gap-12 border__primary--bottom dc__no-shrink">
348-
<div className="flexbox dc__content-space">
349-
<h2 className="m-0 dc__truncate fs-16 fw-6 lh-1-5 dc__gap-4">
348+
<div className="flexbox dc__content-space dc__gap-4">
349+
<h2 className="m-0 dc__truncate fs-16 fw-6 lh-1-5 dc__gap-4 flexbox cn-9">
350350
{filteredTitleSegments.map((segment, index) => (
351351
<Fragment key={segment}>
352352
{segment}

src/Shared/Components/AppStatusModal/service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export const getAppDetails = async ({
3939

4040
return {
4141
...(appDetails.result || ({} as AppDetails)),
42-
resourceTree: resourceTree.result,
42+
resourceTree: resourceTree?.result,
4343
appType: AppType.DEVTRON_APP,
4444
}
4545
}

0 commit comments

Comments
 (0)