mirror of
https://dev.azure.com/tstanciu94/ReverseProxy/_git/ReverseProxy_Frontend
synced 2025-08-05 17:22:36 +03: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 exceptionsInternal = exceptions.map(z => {
|
||||||
const result = { match: z.match };
|
const result = { match: z.match };
|
||||||
const keys = [...z.keys];
|
const keys = z.keys ? [...z.keys] : [];
|
||||||
if (z.key) {
|
if (z.key) {
|
||||||
keys.unshift(z.key);
|
keys.unshift(z.key);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user