Skip to content

Commit

Permalink
[FIX] - remove pattern from downloaded qfeatures object
Browse files Browse the repository at this point in the history
  • Loading branch information
leopoldguyot committed Jul 15, 2024
1 parent ada6132 commit 582ae2c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion R/server_module_summary_tab.R
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ server_module_summary_tab <- function(id) {
"qfeatures_object.rds"
},
content = function(file) {
saveRDS(global_rv$qfeatures, file)
final_qfeatures <- global_rv$qfeatures
names(final_qfeatures) <- remove_QFeaturesGUI(names(final_qfeatures))
saveRDS(final_qfeatures, file)
}
)
})
Expand Down

0 comments on commit 582ae2c

Please # to comment.