Skip to content

Commit

Permalink
Merge pull request nstrayer#26 from nstrayer/no_description_bullet_fix
Browse files Browse the repository at this point in the history
Allow no description
Nick Strayer authored Jun 2, 2020
2 parents c0b0d9b + d71dbe7 commit 0b59804
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
@@ -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),

0 comments on commit 0b59804

Please sign in to comment.