Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
bd730d8
chore(version): bump to 1.20.0-pre-0
RohitRaj011 Sep 2, 2025
08b62be
Merge pull request #879 from devtron-labs/chore/sync-develop-with-main
RohitRaj011 Sep 2, 2025
4895c07
Merge branch 'main' of https://github.com/devtron-labs/devtron-fe-com…
AbhishekA1509 Sep 17, 2025
d70613c
Merge pull request #897 from devtron-labs/chore/main-pull
AbhishekA1509 Sep 17, 2025
c4ba138
fix: gift-animated gpu rendering
AbhishekA1509 Sep 19, 2025
426b295
chore: bump version to 1.20.2-beta-1 and update SVG animation styles
AbhishekA1509 Sep 19, 2025
3230579
Merge branch 'main' of https://github.com/devtron-labs/devtron-fe-com…
AbhishekA1509 Sep 22, 2025
6848232
chore: bump version to 1.20.2-beta-2 and update SVG animation for ic-…
AbhishekA1509 Sep 22, 2025
0376b95
Merge pull request #903 from devtron-labs/chore/main-pull
AbhishekA1509 Sep 22, 2025
bf51e4a
chore: bump version to 1.20.2-beta-3 and update SVG loader styles
AbhishekA1509 Sep 22, 2025
d5b1faa
chore: bump version to 1.20.2-beta-4 and enhance SVG loader performance
AbhishekA1509 Sep 22, 2025
47779b6
chore: bump version to 1.20.2-beta-5 and optimize SVG loader animations
AbhishekA1509 Sep 22, 2025
b2e36fa
chore: update version to 1.20.2-beta-6 in package.json and package-lo…
AbhishekA1509 Sep 22, 2025
1693c47
chore: bump version to 1.20.2-beta-7 and update SVG loader animations
AbhishekA1509 Sep 22, 2025
ac957fe
chore: bump version to 1.20.2-beta-8, add new Devtron freemium illust…
AbhishekA1509 Sep 22, 2025
f52d09d
chore: remove unused Devtron freemium illustrations
AbhishekA1509 Sep 22, 2025
13c906b
Merge branch 'develop' of https://github.com/devtron-labs/devtron-fe-…
AbhishekA1509 Sep 22, 2025
003399d
chore: bump version to 1.20.3-pre-3 in package.json and package-lock.…
AbhishekA1509 Sep 22, 2025
19a5ce8
Merge pull request #904 from devtron-labs/fix/gatekeeper-animation-perf
AbhishekA1509 Sep 22, 2025
8bc5e76
chore: bump version to 1.20.3-pre-8 in package.json and package-lock.…
AbhishekA1509 Sep 24, 2025
357309f
Merge pull request #906 from devtron-labs/fix/ic-rotate-devtron
AbhishekA1509 Sep 24, 2025
4729768
Merge branch 'main' of https://github.com/devtron-labs/devtron-fe-com…
arunjaindev Oct 8, 2025
ddf292a
Merge pull request #922 from devtron-labs/chore/sync-main
arunjaindev Oct 8, 2025
89f88f8
Merge branch 'develop' of https://github.com/devtron-labs/devtron-fe-…
arunjaindev Oct 9, 2025
0619646
chore: version bump
arunjaindev Oct 9, 2025
03f32ad
fix: config drift window from app status modal
arunjaindev Oct 9, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtron-labs/devtron-fe-common-lib",
"version": "1.20.4",
"version": "1.20.6",
"description": "Supporting common component library",
"type": "module",
"main": "dist/index.js",
Expand Down
39 changes: 38 additions & 1 deletion src/Assets/IconV2/ic-gift-animated.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import {
ComponentSizeType,
PROGRESSING_DEPLOYMENT_STATUS_POLLING_INTERVAL,
} from '@Shared/constants'
import { useMainContext } from '@Shared/Providers'
import { AppType } from '@Shared/types'

import { APIResponseHandler } from '../APIResponseHandler'
Expand Down Expand Up @@ -57,7 +58,7 @@ const AppStatusModal = ({
initialTab,
debugWithAIButton,
}: AppStatusModalProps) => {
const [showConfigDriftModal, setShowConfigDriftModal] = useState(false)
const { setTempAppWindowConfig } = useMainContext()
const [selectedTab, setSelectedTab] = useState<AppStatusModalTabType>(initialTab || null)

const appDetailsAbortControllerRef = useRef<AbortController>(new AbortController())
Expand Down Expand Up @@ -241,30 +242,20 @@ const AppStatusModal = ({

const handleShowConfigDriftModal = isConfigDriftEnabled
? () => {
setShowConfigDriftModal(true)
handleClose()
setTempAppWindowConfig({
open: true,
title: `${appDetails.appName} / Live and desired manifest comparison`,
component: <ConfigDriftModal appId={appDetails.appId} envId={appDetails.environmentId} />,
})
}
: null

const handleCloseConfigDriftModal = () => {
handleClose()
setShowConfigDriftModal(false)
}

const handleSelectTab = async (updatedTab: AppStatusModalTabType) => {
handleClearDeploymentStatusTimeout()
setSelectedTab(updatedTab)
}

if (showConfigDriftModal) {
return (
<ConfigDriftModal
appId={appDetails.appId}
envId={+appDetails.environmentId}
handleCloseModal={handleCloseConfigDriftModal}
/>
)
}

const filteredTitleSegments = (titleSegments || []).filter((segment) => !!segment)

const getEmptyStateMessage = () => {
Expand Down
1 change: 0 additions & 1 deletion src/Shared/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,6 @@ export interface AppDetails {

export interface ConfigDriftModalProps extends Required<Pick<AppDetails, 'appId'>> {
envId: number
handleCloseModal?: () => void
}

export enum RegistryType {
Expand Down
Loading