feat: hide empty webauthn devices table when there are no devices (#4405)
parent
6f8b6adfb5
commit
2967500401
|
@ -83,6 +83,7 @@ export default function TwoFactorAuthSettings(props: Props) {
|
|||
{"Add new device"}
|
||||
</Button>
|
||||
</Box>
|
||||
{webauthnDevices ? (
|
||||
<Box>
|
||||
<Table>
|
||||
<TableHead>
|
||||
|
@ -94,8 +95,7 @@ export default function TwoFactorAuthSettings(props: Props) {
|
|||
</TableRow>
|
||||
</TableHead>
|
||||
<TableBody>
|
||||
{webauthnDevices
|
||||
? webauthnDevices.map((x, idx) => {
|
||||
{webauthnDevices.map((x, idx) => {
|
||||
return (
|
||||
<WebauthnDeviceItem
|
||||
device={x}
|
||||
|
@ -106,11 +106,11 @@ export default function TwoFactorAuthSettings(props: Props) {
|
|||
key={`webauthn-device-${idx}`}
|
||||
/>
|
||||
);
|
||||
})
|
||||
: null}
|
||||
})}
|
||||
</TableBody>
|
||||
</Table>
|
||||
</Box>
|
||||
) : null}
|
||||
</Stack>
|
||||
</Box>
|
||||
</Paper>
|
||||
|
|
Loading…
Reference in New Issue