You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I know this gem is not actively maintained but I wanted to see if anyone is having the same issue and if there is a fix I can implement.
config.configure_with(:import) do |config|
config.update_if_exists = true
config.rollback_on_error = true
end
So this is a part of what I have in my config file, the issue I am experiencing is that when it updates a record rather than creates a new one and the record it's trying to update is not passing a validation, it correctly does not update the record, however it still gives a success message which is very confusing for the user. Does anyone have a fix for this?
Additionally, in my import form the checkbox for update_if_exists just comes up on my screen as a strange line field which cannot be interracted with instead of the checkbox I can see it's supposed to be from the HTML.
The text was updated successfully, but these errors were encountered:
The problem should be that the import form has been customized and data-turbo="false" was not added to the form tag in views/rails_admin/main/import after the upgrade.
Hello, I know this gem is not actively maintained but I wanted to see if anyone is having the same issue and if there is a fix I can implement.
config.configure_with(:import) do |config|
config.update_if_exists = true
config.rollback_on_error = true
end
So this is a part of what I have in my config file, the issue I am experiencing is that when it updates a record rather than creates a new one and the record it's trying to update is not passing a validation, it correctly does not update the record, however it still gives a success message which is very confusing for the user. Does anyone have a fix for this?
Additionally, in my import form the checkbox for update_if_exists just comes up on my screen as a strange line field which cannot be interracted with instead of the checkbox I can see it's supposed to be from the HTML.
The text was updated successfully, but these errors were encountered: