From: Nenad Vujicic Date: Mon, 2 Sep 2024 13:20:07 +0000 (+0200) Subject: Fixed bug when requested missing changeset X-Git-Tag: live~410^2~1 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/005add9f491305d2625224e2efb4c6e17a5bd210?ds=inline;hp=--cc Fixed bug when requested missing changeset Fixes #5148. Added forgotten @type = "changeset" in ChangesetsController#show. --- 005add9f491305d2625224e2efb4c6e17a5bd210 diff --git a/app/controllers/changesets_controller.rb b/app/controllers/changesets_controller.rb index ba04b9a17..2c50ff905 100644 --- a/app/controllers/changesets_controller.rb +++ b/app/controllers/changesets_controller.rb @@ -75,6 +75,7 @@ class ChangesetsController < ApplicationController end def show + @type = "changeset" @changeset = Changeset.find(params[:id]) case turbo_frame_request_id when "changeset_nodes"