Skip to content

Commit 9999ebf

Browse files
authored
Merge pull request #2730 from devtron-labs/feat/app-details-chat
feat: add AIChat in devtron app details
2 parents 60f024f + b5a0698 commit 9999ebf

File tree

20 files changed

+459
-85
lines changed

20 files changed

+459
-85
lines changed

.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ FEATURE_DEFAULT_AUTHENTICATED_VIEW_ENABLE=false
6969
GATEKEEPER_URL=https://license.devtron.ai/dashboard
7070
FEATURE_AI_INTEGRATION_ENABLE=false
7171
LOGIN_PAGE_IMAGE=
72+
FEATURE_ASK_DEVTRON_EXPERT=false
7273
FEATURE_MANAGE_TRAFFIC_ENABLE=false
7374
FEATURE_REDFISH_NODE_ENABLE=false
7475
FEATURE_INFRA_PROVISION_INFO_BLOCK_HIDE=false

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"homepage": "/dashboard",
66
"dependencies": {
7-
"@devtron-labs/devtron-fe-common-lib": "1.15.1-pre-1",
7+
"@devtron-labs/devtron-fe-common-lib": "1.15.1-pre-2",
88
"@esbuild-plugins/node-globals-polyfill": "0.2.3",
99
"@rjsf/core": "^5.13.3",
1010
"@rjsf/utils": "^5.13.3",

src/Pages/GlobalConfigurations/ClustersAndEnvironments/CreateCluster/EnterpriseTrialDialog.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,15 @@ import {
1010

1111
import { EnterpriseTrialDialogProps } from './types'
1212

13-
const EnterpriseTrialDialog = ({ featureTitle, featureDescription }: EnterpriseTrialDialogProps) => {
13+
const EnterpriseTrialDialog = ({ featureTitle, featureDescription, showBorder = true }: EnterpriseTrialDialogProps) => {
1414
const testimonialCount = TESTIMONIAL_CARD_DATA.length
1515
const randomNumber = Math.round(Math.random() * testimonialCount) % testimonialCount
1616
const testimonialConfig = TESTIMONIAL_CARD_DATA[randomNumber]
1717

1818
return (
19-
<div className="flexbox-col br-16 border__primary dc__overflow-hidden enterprise-trial-dialog">
19+
<div
20+
className={`flexbox-col ${showBorder ? 'border__primary br-16' : ''} dc__overflow-hidden enterprise-trial-dialog`}
21+
>
2022
<div className="p-24 flexbox-col dc__gap-16 border__secondary--bottom">
2123
<Icon name="ic-enterprise-tag" size={null} color={null} />
2224
<div className="flexbox-col dc__gap-8 ">

src/Pages/GlobalConfigurations/ClustersAndEnvironments/CreateCluster/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,5 @@ export enum FooterComponentChildKey {
3636
export interface EnterpriseTrialDialogProps {
3737
featureTitle: string
3838
featureDescription: string
39+
showBorder?: boolean
3940
}

src/assets/icons/ic-sparkles.svg

Lines changed: 0 additions & 26 deletions
This file was deleted.

src/assets/img/ic-maintenance.svg

Lines changed: 130 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)