Skip to content

Commit

Permalink
Merge pull request #4 from tuckner/workflow-filter
Browse files Browse the repository at this point in the history
Add very simple workflow filter
  • Loading branch information
tuckner authored Jan 2, 2024
2 parents 7e898cc + f6541f2 commit 2b971ce
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/components/Board/TaskItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,16 @@ export default function TaskItem({ tasks, index }: Props) {
{" "}
{tasks.subtasks.length} workflows
</p>
<div className="hidden">
{tasks.subtasks.map((subtask, index) => (
<div key={index}>
<p className="pt-2 text-xs text-gray font-bold">
{" "}
{subtask.title}
</p>
</div>
))}
</div>
<div className="pt-2 text-xs text-gray content-end font-bold">
{" "}
<div className="flex justify-end">
Expand Down

0 comments on commit 2b971ce

Please sign in to comment.