Skip to content

Commit

Permalink
fixup! fix: Apply is workshop locked also to admins
Browse files Browse the repository at this point in the history
  • Loading branch information
aleixhub committed Jan 28, 2025
1 parent 2a1d355 commit 572610d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions catalog/ui/src/app/Workshops/WorkshopsItemDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -263,9 +263,12 @@ const WorkshopsItemDetails: React.FC<{
<DescriptionListTerm>Status</DescriptionListTerm>
<DescriptionListDescription>
{autoStartTime && autoStartTime > Date.now() ? (
<span className="services-item__status--scheduled" key="scheduled">
<CheckCircleIcon key="scheduled-icon" /> Scheduled
</span>
<>
<span className="services-item__status--scheduled" key="scheduled">
<CheckCircleIcon key="scheduled-icon" /> Scheduled
</span>
{resourceClaims.length > 0 ? <WorkshopStatus resourceClaims={resourceClaims} /> : null}
</>
) : resourceClaims.length > 0 ? (
<WorkshopStatus resourceClaims={resourceClaims} />
) : (
Expand Down

0 comments on commit 572610d

Please sign in to comment.