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
Start the app by AI_DEVICE=xpu docker compose up (I provided HOST in docker-compuse.yaml to overcome the problem from Cannot access app run in docker #3485 ).
Open http:<IP>:8000 in your browser on another machine (all the ports are available, both UI, and api can be accessed).
Ensure the Anomalib Suite welcome page is opened.
Click Create project.
Nothing happens. The JS console reveals:
Uncaught TypeError: crypto.randomUUID is not a function
If I set up port forwarding and use http://localhost:8000 to open the app, it works properly.
This change has been introduced in #3470
crypto.randomUUID can be used only in secure context (https and http on localhost), which is not the case in my scenario.
AI_DEVICE=xpu docker compose up(I provided HOST in docker-compuse.yaml to overcome the problem from Cannot access app run in docker #3485 ).http:<IP>:8000in your browser on another machine (all the ports are available, both UI, and api can be accessed).Nothing happens. The JS console reveals:
If I set up port forwarding and use
http://localhost:8000to open the app, it works properly.This change has been introduced in #3470
crypto.randomUUID can be used only in secure context (https and http on localhost), which is not the case in my scenario.