placecal
created pr with
ps-215
changed status to
accepted
cmds
checkout latest patchset:
ssh pr.pico.sh print pr-123 | git am -3checkout any patchset in a patch request:
ssh pr.pico.sh print ps-X | git am -3add changes to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add 123set PR to open (enables RSS notifications):
ssh pr.pico.sh pr open 123set PR to draft (stops RSS notifications):
ssh pr.pico.sh pr draft 123
Patchset
ps-215
fix: don't render html wrapper around plaintext output
wheresalice
2026-03-13T12:42:27ZSemantic diff summary
0 added,
0 modified,
0 signature changed,
0 removed
across 0 analyzed files
(1 file skipped: unsupported file type)
+1
-1
app/controllers/events_controller.rb
#
@@ -40,7 +40,7 @@ class EventsController < ApplicationController
)
end
end
- format.text { render Views::Events::IndexText.new(events: @events) }
+ format.text { render Views::Events::IndexText.new(events: @events), layout: false }
format.ics { render_ical }
end
end