Skip to content

Commit 2723143

Browse files
committed
fix location display
1 parent ec67bb2 commit 2723143

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

frontends/ol-components/src/components/LearningResourceExpanded/DifferingRunsTable.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ const DifferingRunLabel = styled.strong({
5656

5757
const DifferingRunLocation = styled(DifferingRunData)({
5858
flex: "1 0 100%",
59+
flexDirection: "column",
5960
alignSelf: "stretch",
6061
})
6162

@@ -122,7 +123,7 @@ const DifferingRunsTable: React.FC<{ resource: LearningResource }> = ({
122123
{run.delivery.filter((d) => d.code === "in_person").length > 0 &&
123124
run.location && (
124125
<DifferingRunLocation>
125-
<strong>Location:&nbsp;</strong>
126+
<strong>Location</strong>
126127
<span>{run.location}</span>
127128
</DifferingRunLocation>
128129
)}

0 commit comments

Comments
 (0)