about summary refs log tree commit diff
diff options
context:
space:
mode:
authorjgart2024-08-21 21:04:53 -0500
committerjgart2024-08-21 21:04:53 -0500
commit8a7fdd353e1babcdc3c0453bdfba2aa0dead7c3f (patch)
tree3529a771eea98be96be9c0d172d202ba78baa909
parentd798fc1fe6a7b0e6b0c1b58008885236d5144427 (diff)
downloadmouse-longevity-app-main.tar.gz
Add Powered by GeneNetwork slogan to the footer main
-rw-r--r--app.R7
1 files changed, 4 insertions, 3 deletions
diff --git a/app.R b/app.R
index 5d81592..06096de 100644
--- a/app.R
+++ b/app.R
@@ -352,10 +352,11 @@ server <- function(input, output, session) {
 body = dashboardBody(ui)
 
 footer = dashboardFooter(
-        left = a(
+        left = p("Powered by ",
+        a(
           href = "https://git.genenetwork.org/mouse-longevity-app/",
-          target = "_blank", "source code"
-        ),
+          target = "_blank", "GeneNetwork"
+        )),
         right = "2024 | David Ashbrook"
       )