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
no_update
When you have something like
class TodoItem < ActiveRecord::Base acts_as_list end class SubTodoItem < TodoItem; end
and do
item = SubTodoItem.create! TodoItem.acts_as_list_no_update do item.update!(position: 123) end
then the computation of the position for item is still enabled.
item
The text was updated successfully, but these errors were encountered:
Fixed through #315
Sorry, something went wrong.
No branches or pull requests
When you have something like
and do
then the computation of the position for
item
is still enabled.The text was updated successfully, but these errors were encountered: