Open
Description
Bootstraptable version(s) affected
1.24.0
Description
I noticed a weird behaviour using bootstrap tables in a rails app. The table is not displayed properly (no data in the table, duplicated toolbars and paginations, see screenshot below) in the case where I arrived on this page using the back button of the browser. If I refresh the page using the browser, the table is then displayed properly.
Here is the script I used:
<% @owners.each do |owner| %> <% end %>Status | name | firstname | town |
---|---|---|---|
<%= t(owner.status).to_s %> | <%= owner.name.to_s %> | <%= owner.firstname.to_s %> | <%= owner.town_name.to_s %> |
Example(s)
Possible Solutions
I have already tried to change turbo behaviour so page is refreshed when using the back button of the browser but nothing changed.
Additional Context
No response