You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I am trying to get the editor working via docker, but this is the error I get when I access the app and add a decision table to the graph.
Unexpected Application Error! crypto.randomUUID is not a function TypeError: crypto.randomUUID is not a function at PO (http://192.168.10.205:3000/assets/index-P5ttpSqp.js:2826:89879) at http://192.168.10.205:3000/assets/index-P5ttpSqp.js:2826:90204 at mbe (http://192.168.10.205:3000/assets/index-P5ttpSqp.js:2003:22295) at NPe (http://192.168.10.205:3000/assets/index-P5ttpSqp.js:2003:22323) at bbe (http://192.168.10.205:3000/assets/index-P5ttpSqp.js:2019:1656) at RE (http://192.168.10.205:3000/assets/index-P5ttpSqp.js:2019:1722) at http://192.168.10.205:3000/assets/index-P5ttpSqp.js:2826:90159 at Object.useMemo (http://192.168.10.205:3000/assets/index-P5ttpSqp.js:39:23475) at er.useMemo (http://192.168.10.205:3000/assets/index-P5ttpSqp.js:10:6302) at Cpn (http://192.168.10.205:3000/assets/index-P5ttpSqp.js:2826:90147)
Could you please help.
The text was updated successfully, but these errors were encountered:
The error occurs because crypto.randomUUID() is part of the Web Crypto API, which requires a secure context. This means that it will only work in the following scenarios:
When running on localhost over any protocol (HTTP or HTTPS).
When running on a domain or IP address over a secure HTTPS connection.
Since your application is being accessed via http://192.168.10.205:3000, the browser does not consider this a secure context, and crypto.randomUUID() is therefore unavailable.
Hi,
I am trying to get the editor working via docker, but this is the error I get when I access the app and add a decision table to the graph.
Unexpected Application Error! crypto.randomUUID is not a function TypeError: crypto.randomUUID is not a function at PO (http://192.168.10.205:3000/assets/index-P5ttpSqp.js:2826:89879) at http://192.168.10.205:3000/assets/index-P5ttpSqp.js:2826:90204 at mbe (http://192.168.10.205:3000/assets/index-P5ttpSqp.js:2003:22295) at NPe (http://192.168.10.205:3000/assets/index-P5ttpSqp.js:2003:22323) at bbe (http://192.168.10.205:3000/assets/index-P5ttpSqp.js:2019:1656) at RE (http://192.168.10.205:3000/assets/index-P5ttpSqp.js:2019:1722) at http://192.168.10.205:3000/assets/index-P5ttpSqp.js:2826:90159 at Object.useMemo (http://192.168.10.205:3000/assets/index-P5ttpSqp.js:39:23475) at er.useMemo (http://192.168.10.205:3000/assets/index-P5ttpSqp.js:10:6302) at Cpn (http://192.168.10.205:3000/assets/index-P5ttpSqp.js:2826:90147)
Could you please help.
The text was updated successfully, but these errors were encountered: