Skip to content

Commit

Permalink
Fix bug where names weren't showing up for .prev_splvals. #203 dev vbump
Browse files Browse the repository at this point in the history
  • Loading branch information
gmbecker committed Jul 23, 2021
1 parent 44c44e7 commit 1458bd6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
Package: rtables
Title: Reporting Tables
<<<<<<< HEAD
Date: 2021-07-07
Version: 0.3.8.9000
=======
Date: 2021-03-24
Version: 0.3.7.0009
>>>>>>> Fix bug where names weren't showing up for .prev_splvals. #203 dev vbump
Authors@R: c(
person("Gabriel", "Becker", email = "gabembecker@gmail.com", role = c("aut", "cre")),
person("Adrian", "Waddell", email = "adrian.waddell@roche.com", role = "aut"),
Expand Down
2 changes: 1 addition & 1 deletion R/tt_dotabulation.R
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ setMethod(".make_split_kids", "Split",
inner = unlist(mapply(function(dfpart, nm, label, baselines, splval) {
rsplval <- rawvalues(splval)
if(length(rsplval) > 0)
setNames(rsplval, obj_name(spl))
rsplval <- setNames(rsplval, obj_name(spl))
recursive_applysplit(df = dfpart,
name = nm,
lvl = innerlev,
Expand Down

0 comments on commit 1458bd6

Please sign in to comment.