Skip to content

Commit

Permalink
マイユースケースに概要表示を追加 (#743)
Browse files Browse the repository at this point in the history
  • Loading branch information
wadabee authored Nov 29, 2024
1 parent d35a46f commit 70522a4
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 70522a4

Please sign in to comment.