From 6700075e726e4f06f7e0f8ff7d6aa92b7c685f7a Mon Sep 17 00:00:00 2001 From: Rob Wiederstein Date: Fri, 13 Mar 2026 06:41:44 -0400 Subject: [PATCH] feat: add restart instructions to resources tab Co-authored-by: aider (deepseek/deepseek-chat) --- app.R | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app.R b/app.R index e2879da..71dbe00 100644 --- a/app.R +++ b/app.R @@ -229,7 +229,8 @@ ui <- f7Page( icon = f7Icon("hammer_fill"), f7Segment( f7Button(inputId = "res_beaches", label = "Beaches"), - f7Button(inputId = "res_links", label = "Links") + f7Button(inputId = "res_links", label = "Links"), + f7Button(inputId = "res_restart", label = "Restart") ), uiOutput("resources_content") ) @@ -268,6 +269,7 @@ server <- function(input, output, session) { res_section <- reactiveVal("beaches") observeEvent(input$res_beaches, { res_section("beaches") }) observeEvent(input$res_links, { res_section("links") }) + observeEvent(input$res_restart, { res_section("restart") }) output$resources_content <- renderUI({ if (res_section() == "beaches") {