Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(app-list-grid): Update docs link from vmware to CW apps catalog docs #20

Merged
merged 1 commit into from
May 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dashboard/src/components/AppList/AppListGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export interface IAppListProps {
}

function AppListGrid(props: IAppListProps) {
const { appList, customResources, cluster, namespace, appVersion, filter } = props;
const { appList, customResources, cluster, namespace, filter } = props;
const filteredReleases = (appList || []).filter(a =>
new RegExp(escapeRegExp(filter), "i").test(a.name),
);
Expand All @@ -40,7 +40,7 @@ function AppListGrid(props: IAppListProps) {
Start browsing your <Link to={url.app.catalog(cluster, namespace)}>favourite apps</Link>{" "}
or check the{" "}
<a
href={`https://github.com/vmware-tanzu/kubeapps/blob/${appVersion}/site/content/docs/latest/tutorials/getting-started.md`}
href="https://docs.coreweave.com/cloud-ui/applications-catalog"
target="_blank"
rel="noopener noreferrer"
>
Expand Down
Loading