-
Notifications
You must be signed in to change notification settings - Fork 36
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
Can't have two instances on a page with different languages #58
Comments
Hey @calloncampbell are you setting the |
I was able to reproduce locally, at least with a packaged version. Going to see if I can test in debug and try and see what's going on. Will try setting with options over |
Hi @hawkerm I was setting the I'll give the Options way a try and let you know. |
Have it reproducing in the test app in the debugger. Definitely seems like the two editors are sharing an |
Staring right in the face:
This creates a single object of the Options which is used for the default value for every control. Need to switch to |
Now each editor has its own options object created.
When I try to use different instances on a page control, both are set to the same language. Say the first instance is SQL and the second is JSON, when I run the app they're both JSON.
The text was updated successfully, but these errors were encountered: