-
Notifications
You must be signed in to change notification settings - Fork 698
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
Add more strings/texts in the strings.en.yaml file and replace all the occurences with getString() in frontend #4917
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: sagnik3788 <[email protected]>
@@ -129,7 +129,7 @@ export function StatusHeatMap(props: StatusHeatMapProps): React.ReactElement { | |||
{execution.executedBy?.username !== 'pipeline' ? ( | |||
<> | |||
{execution.executedBy?.username ?? getString('chaosController')} | |||
{execution.executedBy?.username && ' | Manually'} | |||
{execution.executedBy?.username && getString('manually')} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{execution.executedBy?.username && getString('manually')} | |
{execution.executedBy?.username && `| ${getString('manually')}`} |
NIT: Update strings file to just contain the text and then use in the component.
@@ -360,6 +360,7 @@ executedBy: Executed by | |||
executedOn: Executed on | |||
executionDetails: Execution details goes here | |||
executionError: Execution Error | |||
expand: expand |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please clarify if there’s a specific reason this has been included, as it doesn't appear to be in use currently?
|
fix #4147