KiDxS / GateKeeper

Missing key for the property JS-0414
Bug risk
Major
a year agoa year old
Missing "key" prop for element in iterator
46
47    const labels = data.map((keypair) => {
48        return (
49            <Tr>50                <Td>{keypair.label}</Td>51                <Td>52                    <Stack spacing={2} direction="row">53                        <Link href={app.view_ssh_keypair + keypair.id}>54                            <Button variant="solid" colorScheme="blue">55                                View56                            </Button>57                        </Link>58                        <DeleteDialog labelID={keypair.id} />59                    </Stack>60                </Td>61            </Tr>62        );
63    });
64