From a5955421406cfc4a14cbb05207b8c95fffedb15d Mon Sep 17 00:00:00 2001 From: Carson Date: Thu, 12 Oct 2023 15:59:51 -0500 Subject: [PATCH] Change sidebar() toggle icon back to chevron-left --- R/sidebar.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/sidebar.R b/R/sidebar.R index d341daea0..8709bfc0c 100644 --- a/R/sidebar.R +++ b/R/sidebar.R @@ -295,10 +295,10 @@ sidebar_toggle <- toggle_sidebar collapse_icon <- function() { if (!is_installed("bsicons")) { - icon <- "" + icon <- "" return(HTML(icon)) } - bsicons::bs_icon("arrow-bar-left", class = "collapse-icon", size = NULL) + bsicons::bs_icon("chevron-left", class = "collapse-icon", size = NULL) } sidebar_init_js <- function() {