Ruby on Rails -> From the main grid, filters and columns look great, but if you click into an individual record, then use the browser 'back' button, the filters in the side panel have duplicated.
Anyone encountered this before? Seems like a browser cache problem, since there's no server side action in the Git Bash server window or Chrome dev tools Network tab. But I'm not sure how to accommodate it.
Not a whole lot of relevant code to post since I think it's a browser problem. But the example filters are coded like so:
filter :License_NO, label: "License #", filters: [:equals]
filter :Operator, label: "Operator", as: :string, filters: [:contains, :equals]
filter :APPR, as: :select, collection: RefCode.appr_stat.pluck(:Definition, :Code)