We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have a custom script where I register a few components.
Here is what I have in NovaServiceProvider:
NovaServiceProvider
Nova::serving(function () { Nova::remoteScript(mix('js/nova.js')); });
Here is what I have in the script:
Nova.booting(function (app) { app.component('HtmlContentModal', HtmlContentModal); });
Sometimes app is undefined (not always) which triggers an error.
app
Safari Version 18.1.1:
Chrome 131.0.6778.205:
As a result, I just get a gray screen instead of a desired page.
Feels like some kind of race condition.
The text was updated successfully, but these errors were encountered:
Thanks for fixing @crynobone! Is the fix going to be part of 5.0.6 release?
Sorry, something went wrong.
Yes, it will be part of 5.0.6
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
No branches or pull requests
Description:
I have a custom script where I register a few components.
Here is what I have in
NovaServiceProvider
:Here is what I have in the script:
Sometimes
app
is undefined (not always) which triggers an error.Safari Version 18.1.1:
Chrome 131.0.6778.205:
As a result, I just get a gray screen instead of a desired page.
Feels like some kind of race condition.
Detailed steps to reproduce the issue on a fresh Nova installation:
The text was updated successfully, but these errors were encountered: