Skip to content

Commit 95d0aa1

Browse files
stjeskeCopilot
andauthored
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent af0f9c4 commit 95d0aa1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

R/mod_graph.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -779,13 +779,13 @@ mod_graph_server <- function(
779779
background_color = dplyr::case_when(
780780
substr(ColorPoints(),1,7) != substr(font.col, 1,7) ~ substr(font.col, 1,7),
781781
substr(ColorPoints(),1,7) == substr(font.col, 1,7) ~ ""
782-
),
782+
)
783783
) %>%
784784
dplyr::rowwise() %>%
785785
dplyr::mutate(
786786
font.col2 = dplyr::case_when(
787787
substr(ColorPoints(),1,7) != substr(font.col, 1,7) ~ font_color(font.col),
788-
substr(ColorPoints(),1,7) == substr(font.col, 1,7) ~ substr(font.col,1,7)
788+
substr(ColorPoints(),1,7) == substr(font.col,1,7) ~ substr(font.col,1,7)
789789
)
790790
) %>%
791791
dplyr::ungroup() %>%

0 commit comments

Comments
 (0)