Skip to content

Commit

Permalink
fixup! Update UI in helm to catalog-ui-v0.17.6 (#610)
Browse files Browse the repository at this point in the history
  • Loading branch information
aleixhub committed Oct 3, 2022
1 parent fec10c3 commit e059dca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion catalog/ui/src/app/Services/ServiceActions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const ServiceActions: React.FC<{
iconOnly?: boolean;
}> = ({ actionHandlers, className, isDisabled, position, resourceClaim, serviceName, iconOnly = false }) => {
const actionDropdownItems: any[] = [];
const workshopProvisionName = resourceClaim.metadata?.labels?.[`${BABYLON_DOMAIN}/workshop-provision`];
const workshopProvisionName = resourceClaim?.metadata?.labels?.[`${BABYLON_DOMAIN}/workshop-provision`];
const isPartOfWorkshop = !!workshopProvisionName;
const canStart = resourceClaim ? checkResourceClaimCanStart(resourceClaim) : true;
const canStop = resourceClaim ? checkResourceClaimCanStop(resourceClaim) : true;
Expand Down

0 comments on commit e059dca

Please sign in to comment.