Brilliant "ERROR: all tabs must be unnamed arguments"

I am working on a brilliant user interface for the easy-to-use analysis package that I create in R. I have not worked on it in a few months, but recently returned. I am creating an application to work exclusively with local machine users using runApp ().

Unfortunately, when I started the application after updating all my libraries, I received the following error:

Error : Tabs should all be unnamed arguments, but some are named: types 

Along with this in the console:

 Warning: Error in build: Tabs should all be unnamed arguments, but some are named: types Stack trace (innermost first): 56: build 55: buildTabset 54: tabsetPanel 53: tag 52: tags$div 51: div 50: mainPanel 49: sidebarLayout 48: tag 47: tags$div 46: div 45: tabPanel 44: structure 43: navbarMenu 42: navbarPage 41: shinyUI 1: runApp Error : Tabs should all be unnamed arguments, but some are named: types 

I returned to the brilliant version 0.13.2 and this is not a problem. I was not able to track changes between versions causing this. The package I'm working on can be found here .

EDIT: Forgot to mention I'm currently using the brilliant version 0.14

+5
source share
3 answers

I also have a similar problem.

But this problem is not a typo for me, it seems that the error is related to the "parameter", which is not used.

My problem is Error : Tabs should all be unnamed arguments, but some are named: status

So, I delete the entire status parameter in my code, then it works well.

For reference only.

+3
source

This error occurred to me when using shiny 0.14 together with shinydashboard 0.5.1.

Solution: upgrade shinydashboard to 0.5.3 or higher.

0
source

I updated my version of Shiny (to version 1.0.3, although this is possible in an earlier version). This error message appeared:

 Error : Tabs should all be unnamed arguments, but some are named: title 

This was due to the presence of the tabsetPanel parameter called "title". As soon as I remove this option, the problem is gone.

BTW: I replaced it with the following snippet before tabsetPanel :

 br(), h3("Hello"), br(), 

to achieve the same title effect

0
source

Source: https://habr.com/ru/post/1257703/


All Articles