Skip to content

Commit

Permalink
fix: Workshop content alignment (#1541)
Browse files Browse the repository at this point in the history
  • Loading branch information
aleixhub authored Oct 30, 2023
1 parent 67f0c4c commit f9d9dd1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions catalog/ui/src/app/Workshop/WorkshopContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const WorkshopContent: React.FC<{
}}
/>
) : null,
[userAssignment.messages],
[userAssignment.messages]
);

if (userAssignment.labUserInterface?.url && labUserInterfaceRedirect === true) {
Expand Down Expand Up @@ -127,7 +127,7 @@ const WorkshopContent: React.FC<{
{yaml.dump(
Object.keys(userAssignment.data).length === 1
? userAssignment.data[Object.keys(userAssignment.data)[0]]
: userAssignment.data,
: userAssignment.data
)}
</pre>
</DescriptionListDescription>
Expand All @@ -136,6 +136,10 @@ const WorkshopContent: React.FC<{
</>
)}
</DescriptionList>
</Bullseye>
</StackItem>
<StackItem>
<Bullseye>
{templateHtml ? (
<Panel>
<PanelMain>
Expand Down

0 comments on commit f9d9dd1

Please sign in to comment.