Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions frontend/main/src/components/admin/EditPostCourseSections.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -294,9 +294,14 @@ export default function EditPostCourseSections({
<Link
href={`/admin/lessons/${lesson.id}`}
>
<a className="text-2xl underline">
{lesson.title}
</a>
<div className="flex flex-col">
<a className="text-2xl underline cursor-pointer">
{lesson.title}
</a>
<p className="text-xs">
{lesson?.slug}
</p>
</div>
</Link>
<button
onClick={() =>
Expand Down Expand Up @@ -366,7 +371,10 @@ export default function EditPostCourseSections({
{...provided.dragHandleProps}
ref={provided.innerRef}
>
<p>{l.title}</p>
<div className="flex flex-col">
<p>{l.title}</p>
<p className="text-xs">{l?.slug}</p>
</div>
</div>
)}
</Draggable>
Expand Down