mirror of
https://dev.azure.com/tstanciu94/ReverseProxy/_git/ReverseProxy_Frontend
synced 2022-12-28 18:12:07 +02:00
ExceptionsCard - null keys bug fix
This commit is contained in:
parent
86931af2c4
commit
f836fd3da0
@ -29,7 +29,7 @@ const ExceptionsCard = ({ exceptions }) => {
|
||||
|
||||
const exceptionsInternal = exceptions.map(z => {
|
||||
const result = { match: z.match };
|
||||
const keys = [...z.keys];
|
||||
const keys = z.keys ? [...z.keys] : [];
|
||||
if (z.key) {
|
||||
keys.unshift(z.key);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user