-
Notifications
You must be signed in to change notification settings - Fork 175
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
Fix exception from missing import on select component #373
Conversation
Thanks! |
{!! Laravel\Pulse\Facades\Pulse::css() !!} | ||
{!! Pulse::css() !!} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moving to imports to standardise how we reference classes in the views.
|
||
AliasLoader::getInstance()->setAliases([]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This ensures we don't rely on aliases across Pulse to help detect this in the future via the testsuite.
Will this be released as |
@RobertBoes made a quick release for this one. |
Hello! I ran into this exception when upgrading to 1.2.0 today:
It looks to be a missing import on the
select.blade.php
component, related to the change in #371.This PR just adds the import in (in a similar manner to the other blade files) so that the component can use the
Str::random()
function.This is my first contribution to the Laravel ecosystem, so please let me know if there is anything missing or things I should consider for future PRs.
Thanks for making great software!