Skip to content

Commit

Permalink
fix: retry disabled text (argoproj#8004)
Browse files Browse the repository at this point in the history
fix: retry disabled text (argoproj#8004)

Signed-off-by: viktorplakida <[email protected]>
  • Loading branch information
plakyda-codefresh authored Dec 22, 2021
1 parent 129e9ea commit 000f951
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ const retryOptionsView: Array<(initData: models.RetryStrategy) => React.ReactNod
];

export const ApplicationRetryView = ({initValues}: {initValues?: models.RetryStrategy}) => {
const result = !initValues ? 'Retry not installed' : retryOptionsView.map((render, i) => render(initValues));
const result = !initValues ? 'Retry disabled' : retryOptionsView.map((render, i) => render(initValues));
return <div className='application-retry-option-view-list'>{result}</div>;
};

0 comments on commit 000f951

Please sign in to comment.