Fix: handle service object not found
This commit is contained in:
parent
6ae351b2ba
commit
9c5521ba35
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue