Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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
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.19.2",
"version": "1.19.3",
"description": "Supporting common component library",
"type": "module",
"main": "dist/index.js",
Expand Down
31 changes: 0 additions & 31 deletions src/Assets/IconV2/ic-apica.svg

This file was deleted.

2 changes: 0 additions & 2 deletions src/Shared/Components/Icon/Icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { ReactComponent as ICAborted } from '@IconsV2/ic-aborted.svg'
import { ReactComponent as ICActivity } from '@IconsV2/ic-activity.svg'
import { ReactComponent as ICAdd } from '@IconsV2/ic-add.svg'
import { ReactComponent as ICAmazonEks } from '@IconsV2/ic-amazon-eks.svg'
import { ReactComponent as ICApica } from '@IconsV2/ic-apica.svg'
import { ReactComponent as ICAppGroup } from '@IconsV2/ic-app-group.svg'
import { ReactComponent as ICAppTemplate } from '@IconsV2/ic-app-template.svg'
import { ReactComponent as ICArrowClockwise } from '@IconsV2/ic-arrow-clockwise.svg'
Expand Down Expand Up @@ -232,7 +231,6 @@ export const iconMap = {
'ic-activity': ICActivity,
'ic-add': ICAdd,
'ic-amazon-eks': ICAmazonEks,
'ic-apica': ICApica,
'ic-app-group': ICAppGroup,
'ic-app-template': ICAppTemplate,
'ic-arrow-clockwise': ICArrowClockwise,
Expand Down
26 changes: 15 additions & 11 deletions src/Shared/Components/License/DevtronLicenseCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,17 +73,21 @@ const LicenseCardSubText = ({
size={20}
/>
</div>
<div className="mail-support">
<Button
dataTestId="mail-support"
startIcon={<Icon name="ic-email" color={null} />}
text={ENTERPRISE_SUPPORT_LINK}
variant={ButtonVariantType.text}
component={ButtonComponentType.anchor}
anchorProps={{ href: `mailto:${ENTERPRISE_SUPPORT_LINK}` }}
/>
</div>
<ContactSupportButton />
{freemiumLimitReached && (
<>
<div className="mail-support">
<Button
dataTestId="mail-support"
startIcon={<Icon name="ic-email" color={null} />}
text={ENTERPRISE_SUPPORT_LINK}
variant={ButtonVariantType.text}
component={ButtonComponentType.anchor}
anchorProps={{ href: `mailto:${ENTERPRISE_SUPPORT_LINK}` }}
/>
</div>
<ContactSupportButton />
</>
)}
</div>
)
}
Expand Down
6 changes: 0 additions & 6 deletions src/Shared/Components/LoginBanner/constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,6 @@ export const TESTIMONIAL_CARD_DATA: TestimonialCardConfig[] = [
name: 'Vinod Vijapur',
iconName: 'ic-73strings',
},
{
quote: 'Partnering with Devtron has revolutionized the way we deliver solutions to our customers. Their Kubernetes-native platform has empowered us to automate and scale our deployments, reducing time-to-market and significantly boosting DevOps efficiency. The collaboration has not only streamlined our processes but also enhanced our ability to serve customers with agility and precision.',
designation: 'CPTO at Apica',
name: 'Ranjan Parthasarathy',
iconName: 'ic-apica',
},
{
quote: "Devtron CI has been instrumental in our migration to ARM architecture. The automation and efficiency it provides have not only cut costs but also significantly improved our system performance. Devtron's support made the transition smooth and effective, setting a new standard for our infrastructure operations.",
designation: 'Principal Engineer at Spinny',
Expand Down
1 change: 1 addition & 0 deletions src/Shared/constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,7 @@ export const EULA_LINK = 'https://devtron.ai/end-user-license-agreement-eula'
export const CONTACT_SUPPORT_LINK = 'https://devtron.ai/enterprise-support'
export const PRIVACY_POLICY_LINK = 'https://devtron.ai/privacy-policy'
export const TERMS_OF_USE_LINK = 'https://devtron.ai/terms-of-use'
export const CONTACT_SALES_LINK = 'https://devtron.ai/contact-sales'

export const enum DeleteComponentsName {
Cluster = 'cluster',
Expand Down