Hotwire Breaking Changes
Links Navigationâ
When Hotwire/Turbo is enabled, links inside Turbo Frames will navigate within the frame by default instead of the full page.
Solution: Add data: { turbo_frame: "_top" } to links that should navigate the full page:
link_to "View Details", some_path, data: { turbo_frame: "_top" }
Alternatively, you can use target: "_top" on the turbo-frame element itself if all links should break out of the frame.