feat: [CDE-494]: Changed the text for tooltip and made UI changes (#2999)

* Changed the text for tooltip
* Changed the text for tooltip
pull/3590/head
Neel Khamar 2024-11-15 06:16:49 +00:00 committed by Harness
parent ab72ca9185
commit 0ce059820c
3 changed files with 7 additions and 10 deletions

View File

@ -176,9 +176,6 @@ export const DetailsCard = ({
<Text font="small" color={Color.WHITE}>
{getString('cde.changesTooltip.description')}
</Text>
<Text color={Color.PRIMARY_7} font="small" style={{ cursor: 'pointer' }}>
{getString('cde.changesTooltip.learnMore')}
</Text>
</Layout.Vertical>
</Container>
}

View File

@ -44,10 +44,6 @@ export interface GitspaceStatusTypesListItem {
}
export const GitspaceStatusTypes = (getString: any) => [
{
label: getString('cde.gitspaceStatus.error'),
value: GitspaceStatus.ERROR
},
{
label: getString('cde.gitspaceStatus.active'),
value: GitspaceStatus.RUNNING
@ -55,6 +51,10 @@ export const GitspaceStatusTypes = (getString: any) => [
{
label: getString('cde.gitspaceStatus.stopped'),
value: GitspaceStatus.STOPPED
},
{
label: getString('cde.gitspaceStatus.error'),
value: GitspaceStatus.ERROR
}
]

View File

@ -134,12 +134,12 @@ minuteUsage: Minute Usage
renewsEveryMonth: Renews 1st of every month
remainingOfTotal: remaining of <strong>{{total}}</strong>
renewTooltip:
line1: The amount of minutes for which a gitspace can run in the account.
line2: The amount is reset after every 30 days
line1: With our beta plan, you receive 2,000 free minutes of Gitspace usage each month.
line2: These minutes automatically renew every 30 days, resetting on the 1st of each month.
haveQuestion: Have questions ?
contactUs: Contact Us
changesTooltip:
description: A gitspace is meant to be used just like a user might use an IDE locally in their laptop. To check if a gitspace has any changes which a user might want to save/sync with the remote repo before deleting it, the user needs to start the gitspace and check.
description: You can monitor updates to your Gitspaces using this flag. If there are active changes, this status updates to “Has Changes”.
learnMore: Learn more about Gitspace changes
lastUsedTooltip: Timestamp indicating when the Gitspace was last used.
lastStartedTooltip: Timestamp indicating when the Gitspace was most recently started.