Skip to content

Commit

Permalink
Merge pull request #54 from Rapporteket/dropp_logg
Browse files Browse the repository at this point in the history
Dropp noe logg-greier
  • Loading branch information
kevinthon authored Oct 17, 2024
2 parents 7bb8bbe + 528cc9b commit 17994d8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions R/app_server.R
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,9 @@ app_server <- function(input, output, session) {

# Usestats
log <- shiny::reactive({
rapbase:::readLog(type = input$type, name = "") %>%
rapbase::logFormat()
# rapbase:::readLog(type = input$type, name = "") %>%

Check warning on line 99 in R/app_server.R

View workflow job for this annotation

GitHub Actions / lint

file=R/app_server.R,line=99,col=0,[indentation_linter] Indentation should be 4 spaces but is 0 spaces.
# rapbase::logFormat()

Check warning on line 100 in R/app_server.R

View workflow job for this annotation

GitHub Actions / lint

file=R/app_server.R,line=100,col=8,[commented_code_linter] Commented code should be removed.
NULL

Check warning on line 101 in R/app_server.R

View workflow job for this annotation

GitHub Actions / lint

file=R/app_server.R,line=101,col=5,[indentation_linter] Indentation should be 4 spaces but is 5 spaces.
})

output$download <- shiny::downloadHandler(
Expand Down Expand Up @@ -128,7 +129,8 @@ app_server <- function(input, output, session) {
)

# Autoreport
ar <- rapbase::readAutoReportData()
# ar <- rapbase::readAutoReportData()

Check warning on line 132 in R/app_server.R

View workflow job for this annotation

GitHub Actions / lint

file=R/app_server.R,line=132,col=0,[indentation_linter] Indentation should be 2 spaces but is 0 spaces.

Check warning on line 132 in R/app_server.R

View workflow job for this annotation

GitHub Actions / lint

file=R/app_server.R,line=132,col=4,[commented_code_linter] Commented code should be removed.
ar <- NULL

far <- shiny::reactive({
shiny::req(input$fpackage, input$ftype, input$fowner, input$forganization)
Expand Down

0 comments on commit 17994d8

Please sign in to comment.