Skip to content

Commit

Permalink
fix: preventing undefined error
Browse files Browse the repository at this point in the history
  • Loading branch information
laszlocph committed Oct 16, 2024
1 parent addc9ca commit dd53a1b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web/src/ExpandedFooter.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,17 @@ export function ExpandedFooter(props) {
{
name: "Kustomizations",
href: "#",
count: fluxState.kustomizations.length,
count: fluxState.kustomizations?.length,
},
{
name: "Helm Releases",
href: "#",
count: fluxState.helmReleases.length,
count: fluxState.helmReleases?.length,
},
{
name: "Terraform",
href: "#",
count: fluxState.tfResources.length,
count: fluxState.tfResources?.length,
},
{ name: "Flux Runtime", href: "#", count: undefined },
{ name: "Flux Events", href: "#", count: undefined },
Expand Down

0 comments on commit dd53a1b

Please sign in to comment.