Fix missing key on tasks list
Signed-off-by: Bryan Frimin <bryan@getprobo.com> Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
committed by
Sacha Al Himdani
parent
1f94ddba95
commit
86da13d275
@@ -15,6 +15,7 @@ import {
|
|||||||
useConfirm,
|
useConfirm,
|
||||||
useDialogRef,
|
useDialogRef,
|
||||||
} from "@probo/ui";
|
} from "@probo/ui";
|
||||||
|
import { Fragment } from "react";
|
||||||
import { graphql, useMutation } from "react-relay";
|
import { graphql, useMutation } from "react-relay";
|
||||||
import { useTranslate } from "@probo/i18n";
|
import { useTranslate } from "@probo/i18n";
|
||||||
import { usePageTitle } from "@probo/hooks";
|
import { usePageTitle } from "@probo/hooks";
|
||||||
@@ -88,7 +89,7 @@ export default function TasksCard({ tasks, connectionId }: Props) {
|
|||||||
.slice(0, 2)
|
.slice(0, 2)
|
||||||
.filter((h) => tasksPerHash.get(h.hash)?.length)
|
.filter((h) => tasksPerHash.get(h.hash)?.length)
|
||||||
.map((h) => (
|
.map((h) => (
|
||||||
<>
|
<Fragment key={h.label}>
|
||||||
<h2 className="px-6 py-3 text-sm font-medium flex items-center gap-2 bg-subtle">
|
<h2 className="px-6 py-3 text-sm font-medium flex items-center gap-2 bg-subtle">
|
||||||
<TaskStateIcon state={h.state!} />
|
<TaskStateIcon state={h.state!} />
|
||||||
{h.label}
|
{h.label}
|
||||||
@@ -102,7 +103,7 @@ export default function TasksCard({ tasks, connectionId }: Props) {
|
|||||||
connectionId={connectionId}
|
connectionId={connectionId}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
</>
|
</Fragment>
|
||||||
))
|
))
|
||||||
: // Todo and Done tab simply list todos
|
: // Todo and Done tab simply list todos
|
||||||
filteredTasks?.map((task) => (
|
filteredTasks?.map((task) => (
|
||||||
|
|||||||
Reference in New Issue
Block a user