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 believe there is a typo here:
livewire-powergrid/src/Concerns/Checkbox.php
Line 49 in 7e6682a
It should be hide instead of disable. Currently if hide is active on checkbox rule, then it still gets selected.
hide
disable
Both of these check against disable currently:
$hide = (bool) data_get( collect((array) $model->__powergrid_rules) //@phpstan-ignore-line ->where('apply', true) ->last(), 'disable', ); $disable = (bool) data_get( collect((array) $model->__powergrid_rules) //@phpstan-ignore-line ->where('apply', true) ->last(), 'disable', );
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I believe there is a typo here:
livewire-powergrid/src/Concerns/Checkbox.php
Line 49 in 7e6682a
It should be
hide
instead ofdisable
. Currently if hide is active on checkbox rule, then it still gets selected.Both of these check against
disable
currently:The text was updated successfully, but these errors were encountered: