Skip to content

Commit e36d909

Browse files
committed
Updated components and strings in getString branch
Signed-off-by: sagnik3788 <[email protected]>
1 parent 101557c commit e36d909

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

chaoscenter/web/src/components/SideNav/SideNav.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ export default function SideNav(): ReactElement {
138138
>
139139
<Icon name="log-out" color={Color.WHITE} />
140140
<Text font={{ variation: FontVariation.BODY }} color={Color.WHITE}>
141-
Sign Out
141+
{getString('signOut')}
142142
</Text>
143143
</Layout.Horizontal>
144144
) : (

chaoscenter/web/src/components/StatusHeatMap/StatusHeatMap.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export function StatusHeatMap(props: StatusHeatMapProps): React.ReactElement {
129129
{execution.executedBy?.username !== 'pipeline' ? (
130130
<>
131131
{execution.executedBy?.username ?? getString('chaosController')}
132-
{execution.executedBy?.username && ' | Manually'}
132+
{execution.executedBy?.username && getString('manually')}
133133
</>
134134
) : (
135135
toSentenceCase(execution.executedBy?.username)

chaoscenter/web/src/strings/strings.en.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,7 @@ executedBy: Executed by
360360
executedOn: Executed on
361361
executionDetails: Execution details goes here
362362
executionError: Execution Error
363+
expand: expand
363364
executionHistory: Execution History
364365
executionID: Execution ID
365366
executionOverview: Execution Overview

chaoscenter/web/src/views/UserCreatedProjects/UserCreatedProjects.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function MemoizedUserCreatedProjectsTable({
6262
},
6363
{
6464
id: 'members',
65-
Header: 'Members',
65+
Header: getString('members'),
6666
Cell: ({ row: { original: data } }: { row: Row<Project> }) => {
6767
return (
6868
<AvatarGroup

0 commit comments

Comments
 (0)