From ee799fcd01566ed401d71724b9da1af1d312d601 Mon Sep 17 00:00:00 2001 From: cluffa Date: Mon, 4 Mar 2024 23:57:08 -0500 Subject: [PATCH] favicon fix --- app.R | 6 +++--- favicon.ico => www/favicon.ico | Bin 2 files changed, 3 insertions(+), 3 deletions(-) rename favicon.ico => www/favicon.ico (100%) diff --git a/app.R b/app.R index c75d51b..01d9f49 100644 --- a/app.R +++ b/app.R @@ -11,7 +11,6 @@ GOALWEIGHT <- 185 ui <- dashboardPage( title = "Weight Loss Tracking Dashboard", - tags$head(tags$link(rel = "shortcut icon", href = "favicon.ico")), dashboardHeader( title = "Weight Loss Tracking Dashboard" ), @@ -20,7 +19,8 @@ ui <- dashboardPage( tags$head( tags$style( HTML(".sidebar { height: 90vh; overflow-y: auto; }") - ) + ), + tags$link(rel = "shortcut icon", href = "favicon.ico") ), fluidRow( style = "margin: 3px", @@ -101,7 +101,7 @@ ui <- dashboardPage( ), awesomeCheckbox( "model30", - value = TRUE, + value = FALSE, label = "Fit Linear Model on Last 30 Days Only", status = "primary" ), diff --git a/favicon.ico b/www/favicon.ico similarity index 100% rename from favicon.ico rename to www/favicon.ico