Merge pull request #1762 from benphelps/fix/issue-1757

Fix: handle service container stopped causes crash in v0.6.24
pull/1763/head
shamoon 1 year ago committed by GitHub
commit 2609694dd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save