File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
src/components/ControlPlane Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1616 "tableVersionHeader" : " Revision" ,
1717 "noFluxError" : " Please install flux to view this component" ,
1818 "gitOpsTitle" : " GitOps" ,
19- "kustomizationsTitle" : " Kustomizations"
19+ "kustomizationsTitle" : " Kustomizations" ,
20+ "undefinedError" : " Something went wrong"
2021 },
2122 "ProvidersList" : {
2223 "tableNameHeader" : " Name" ,
Original file line number Diff line number Diff line change @@ -44,7 +44,11 @@ export default function FluxList() {
4444 if ( repoErr || kustomizationErr ) {
4545 return (
4646 < IllustratedError
47- details = { repoErr . message || kustomizationErr . message }
47+ details = {
48+ repoErr ?. message ||
49+ kustomizationErr ?. message ||
50+ t ( 'FluxList.undefinedError' )
51+ }
4852 title = { t ( 'FluxList.noFluxError' ) }
4953 />
5054 ) ;
You can’t perform that action at this time.
0 commit comments