ExceptionsCard - null keys bug fix
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…
Reference in New Issue