Skip to content

Commit

Permalink
Fixed empty bullet problem by making addition of leading bullet condi…
Browse files Browse the repository at this point in the history
…tional on content existing
  • Loading branch information
nstrayer committed Jun 2, 2020
1 parent 9f0a3e6 commit d71dbe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inst/templates/CV_printing_functions.R
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ create_CV_object <- function(data_location,
na.rm = TRUE
) %>%
dplyr::mutate(
description_bullets = paste0("- ", description_bullets),
description_bullets = ifelse(description_bullets != "", paste0("- ", description_bullets), ""),
start = ifelse(start == "NULL", NA, start),
end = ifelse(end == "NULL", NA, end),
start_year = extract_year(start),
Expand Down

0 comments on commit d71dbe7

Please sign in to comment.