Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Firefox stuck with 0.19.44 #2959

Closed
tmistele opened this issue Jul 15, 2024 · 2 comments · Fixed by #2960
Closed

Firefox stuck with 0.19.44 #2959

tmistele opened this issue Jul 15, 2024 · 2 comments · Fixed by #2960
Labels
bug Something isn't working frontend Concerning the HTML editor

Comments

@tmistele
Copy link

I updated to 0.19.44 and noticed that Pluto doesn't load correctly in the browser. It's stuck at the following screen:

image

I'm using Firefox and it seems the issue is the navigator.userAgentData used here

export let is_mac_keyboard = /Mac/i.test(navigator.userAgentData.platform ?? navigator.platform)

Perhaps the fix is to simply insert a ? like this?

/Mac/i.test(navigator.userAgentData?.platform ?? navigator.platform) 

Downgrading to 0.19.43 fixes the issue.

@Azzaare
Copy link

Azzaare commented Jul 16, 2024

I ran into the same issue with both Safari and Firefox.

@Pangoraw Pangoraw added bug Something isn't working frontend Concerning the HTML editor labels Jul 16, 2024
@Pangoraw
Copy link
Collaborator

thank you for the report, a new release will be tagged with the fix.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working frontend Concerning the HTML editor
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants