Fix: handle service object not found

pull/1762/head
shamoon 10 months ago
parent 6ae351b2ba
commit 9c5521ba35

@ -19,7 +19,7 @@ export default function Container({ error = false, children, service }) {
let visibleChildren = childrenArray;
let fields = service?.widget?.fields;
if (typeof service.widget.fields === 'string') fields = JSON.parse(service.widget.fields);
if (typeof fields === 'string') fields = JSON.parse(service.widget.fields);
const type = service?.widget?.type;
if (fields && type) {
// if the field contains a "." then it most likely contains a common loc value

Loading…
Cancel
Save