placecal
created pr with
123.1
changed status to
accepted
cmds
checkout latest patchset:
ssh pr.pico.sh print 123 | git am -3checkout any patchset in a patch request:
ssh pr.pico.sh print 123.[rev] | 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
123.1
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 | |
| 40 | 40 | ) | |
| 41 | 41 | end | |
| 42 | 42 | end | |
| 43 | - | format.text { render Views::Events::IndexText.new(events: @events) } | |
| 43 | + | format.text { render Views::Events::IndexText.new(events: @events), layout: false } | |
| 44 | 44 | format.ics { render_ical } | |
| 45 | 45 | end | |
| 46 | 46 | end |