From 7fa5bcf6bcd4fdcc54c824d6d57a2e3b59fe628e Mon Sep 17 00:00:00 2001 From: Bogdan Brinza Date: Sun, 13 Oct 2024 16:27:37 -0700 Subject: [PATCH] Moving break from above footer to above last updated --- rest/compton_pages/updates.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rest/compton_pages/updates.go b/rest/compton_pages/updates.go index a682e9b..28c2194 100644 --- a/rest/compton_pages/updates.go +++ b/rest/compton_pages/updates.go @@ -88,11 +88,11 @@ func Updates(sections []string, updates map[string][]string, sectionTitles map[s /* Last Updated section */ - pageStack.Append(compton_fragments.Updated(p, updated)) + pageStack.Append(els.Br(), compton_fragments.Updated(p, updated)) /* Standard app footer */ - pageStack.Append(els.Br(), compton_fragments.Footer(p)) + pageStack.Append(compton_fragments.Footer(p)) return p }