Skip to content

Commit

Permalink
Render in footer
Browse files Browse the repository at this point in the history
  • Loading branch information
dzsak committed Mar 27, 2024
1 parent f7ee504 commit e8666b7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions web/src/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ const Footer = memo(function Footer(props) {
sources.push(...fluxState.ociRepositories)
sources.push(...fluxState.gitRepositories)
sources.push(...fluxState.buckets)
sources.push(...fluxState.helmRepositories)
sources.push(...fluxState.helmCharts)
}
return [...sources].sort((a, b) => a.metadata.name.localeCompare(b.metadata.name));
}, [fluxState]);
Expand Down
2 changes: 2 additions & 0 deletions web/src/Sources.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ export function Sources(props) {
sources.push(...fluxState.ociRepositories)
sources.push(...fluxState.gitRepositories)
sources.push(...fluxState.buckets)
sources.push(...fluxState.helmRepositories)
sources.push(...fluxState.helmCharts)
}
return [...sources].sort((a, b) => a.metadata.name.localeCompare(b.metadata.name));
}, [fluxState]);
Expand Down

0 comments on commit e8666b7

Please sign in to comment.