Skip to content

Commit

Permalink
add description to my usecases list
Browse files Browse the repository at this point in the history
  • Loading branch information
wadabee committed Nov 29, 2024
1 parent 42b4060 commit 064a0f5
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,15 +107,18 @@ const UseCaseBuilderMyUseCasePage: React.FC = () => {
key={useCase.useCaseId}
className={`flex flex-row items-center gap-x-2 p-2 last:border-b hover:bg-gray-100 ${idx > 0 ? 'border-t' : ''}`}>
<div
className="flex flex-1 cursor-pointer items-center"
className="flex flex-1 cursor-pointer flex-col justify-start"
onClick={() => {
navigate(
`${ROUTE_INDEX_USE_CASE_BUILDER}/execute/${useCase.useCaseId}`
);
}}>
<span className="line-clamp-1 text-sm font-bold">
<div className="line-clamp-1 text-sm font-bold">
{useCase.title}
</span>
</div>
<div className="line-clamp-1 text-xs font-light text-gray-400">
{useCase.description}
</div>
</div>
<div className="flex items-center gap-2">
<ButtonFavorite
Expand Down

0 comments on commit 064a0f5

Please sign in to comment.