File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -312,6 +312,7 @@ mod_tab_report_server <- function(id, rv) {
312
312
shinyjs :: hide(id = " repBox_dist_err" )
313
313
shinyjs :: hide(id = " repBox_analyses" )
314
314
shinyjs :: hide(id = " repBox_tables" )
315
+ shinyjs :: hide(id = " repBox_meta" )
315
316
316
317
observe({
317
318
req(rv $ active_tab == ' report' )
@@ -1851,11 +1852,11 @@ mod_tab_report_server <- function(id, rv) {
1851
1852
if (rv $ which_meta == " none" ) {
1852
1853
shinyjs :: show(id = " section-highlight_dur" )
1853
1854
shinyjs :: show(id = " section-highlight_dti" )
1854
- shinyjs :: hide(id = " section- repBox_meta" )
1855
+ shinyjs :: hide(id = " repBox_meta" )
1855
1856
} else {
1856
1857
shinyjs :: hide(id = " section-highlight_dur" )
1857
1858
shinyjs :: hide(id = " section-highlight_dti" )
1858
- shinyjs :: show(id = " section- repBox_meta" )
1859
+ shinyjs :: show(id = " repBox_meta" )
1859
1860
}
1860
1861
1861
1862
}) %> % bindEvent(input $ build_report )
Original file line number Diff line number Diff line change @@ -866,15 +866,15 @@ mod_viz_server <- function(id, rv) {
866
866
reactable :: colDef(
867
867
minWidth = 90 , name = " N (area)" ,
868
868
style = format_num ,
869
- format = reactable :: colFormat(separators = TRUE ,
870
- digits = 1 )) },
869
+ format = reactable :: colFormat(
870
+ separators = TRUE , locale = " en-US " , digits = 1 )) },
871
871
N_speed = if (" N_speed" %in% names(out_sum )) {
872
872
reactable :: colDef(
873
873
name = " N (speed)" ,
874
874
minWidth = 90 ,
875
875
style = format_num ,
876
- format = reactable :: colFormat(separators = TRUE ,
877
- digits = 1 )) }
876
+ format = reactable :: colFormat(
877
+ separators = TRUE , locale = " en-US " , digits = 1 )) }
878
878
))
879
879
880
880
}) # end of renderReactable
You can’t perform that action at this time.
0 commit comments