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

Bug 1811743: Show no provided APIs message when all APIs are internal #4697

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -575,26 +575,20 @@ const crdCardRowStateToProps = ({ k8s }, { crdDescs }) => {

export const CRDCardRow = connect(crdCardRowStateToProps)((props: CRDCardRowProps) => {
const internalObjects = getInternalObjects(props.csv);
const crds = props.crdDescs?.filter(({ name }) => !isInternalObject(internalObjects, name));
return (
<div className="co-crd-card-row">
{_.isEmpty(props.crdDescs) ? (
{_.isEmpty(crds) ? (
<span className="text-muted">No Kubernetes APIs are being provided by this Operator.</span>
) : (
props.crdDescs.reduce(
(acc, desc) =>
!isInternalObject(internalObjects, desc.name)
? [
...acc,
<CRDCard
key={referenceForProvidedAPI(desc)}
crd={desc}
csv={props.csv}
canCreate={props.createable.includes(referenceForProvidedAPI(desc))}
/>,
]
: acc,
[],
)
crds.map((crd) => (
<CRDCard
key={referenceForProvidedAPI(crd)}
crd={crd}
csv={props.csv}
canCreate={props.createable.includes(referenceForProvidedAPI(crd))}
/>
))
)}
</div>
);
Expand Down