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 @@ -138,7 +138,11 @@ export default function FluxList() {
138138 if ( repoErr || kustomizationErr ) {
139139 return (
140140 < IllustratedError
141- details = { repoErr . message || kustomizationErr . message }
141+ details = {
142+ repoErr ?. message ||
143+ kustomizationErr ?. message ||
144+ t ( 'FluxList.undefinedError' )
145+ }
142146 title = { t ( 'FluxList.noFluxError' ) }
143147 />
144148 ) ;
You can’t perform that action at this time.
0 commit comments