Skip to content

feat: add AIChat in devtron app details #2730

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Jun 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ FEATURE_DEFAULT_AUTHENTICATED_VIEW_ENABLE=false
GATEKEEPER_URL=https://license.devtron.ai/dashboard
FEATURE_AI_INTEGRATION_ENABLE=false
LOGIN_PAGE_IMAGE=
FEATURE_ASK_DEVTRON_EXPERT=false
FEATURE_MANAGE_TRAFFIC_ENABLE=false
FEATURE_REDFISH_NODE_ENABLE=false
FEATURE_INFRA_PROVISION_INFO_BLOCK_HIDE=false
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"homepage": "/dashboard",
"dependencies": {
"@devtron-labs/devtron-fe-common-lib": "1.15.1-pre-1",
"@devtron-labs/devtron-fe-common-lib": "1.15.1-pre-2",
"@esbuild-plugins/node-globals-polyfill": "0.2.3",
"@rjsf/core": "^5.13.3",
"@rjsf/utils": "^5.13.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,15 @@ import {

import { EnterpriseTrialDialogProps } from './types'

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

return (
<div className="flexbox-col br-16 border__primary dc__overflow-hidden enterprise-trial-dialog">
<div
className={`flexbox-col ${showBorder ? 'border__primary br-16' : ''} dc__overflow-hidden enterprise-trial-dialog`}
>
<div className="p-24 flexbox-col dc__gap-16 border__secondary--bottom">
<Icon name="ic-enterprise-tag" size={null} color={null} />
<div className="flexbox-col dc__gap-8 ">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,5 @@ export enum FooterComponentChildKey {
export interface EnterpriseTrialDialogProps {
featureTitle: string
featureDescription: string
showBorder?: boolean
}
26 changes: 0 additions & 26 deletions src/assets/icons/ic-sparkles.svg

This file was deleted.

130 changes: 130 additions & 0 deletions src/assets/img/ic-maintenance.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading