Skip to content

Commit

Permalink
Merge pull request #1955 from olivroy/docx-issue
Browse files Browse the repository at this point in the history
fix issue with docx save
  • Loading branch information
rich-iannone authored Feb 21, 2025
2 parents d99a57e + 742f2e3 commit c63042b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/utils_render_xml.R
Original file line number Diff line number Diff line change
Expand Up @@ -1917,10 +1917,10 @@ create_body_component_xml <- function(
# Replace an NA group with an empty string
groups_rows_df$group_label[is.na(groups_rows_df$group_label)] <- ""
# Change NA at beginning into unicode?
group_rows_df$group_label <-
groups_rows_df$group_label <-
gsub(
"^NA", "\u2014",
group_rows_df$group_label
groups_rows_df$group_label
)
}

Expand Down

0 comments on commit c63042b

Please sign in to comment.