changing ns.sep for NS in shiny module

When I change ns.sep it has no effect in NS():

> library(shiny)
> NS('foo','bar')
[1] "foo-bar"
> ns.sep
[1] "-"
> ns.sep <- '.'
> ns.sep
[1] "."
> NS('foo','bar')
[1] "foo-bar"

Is NS() using the shiny::ns.sep variable? If so, how can I modify it?

Thanks!

ns.sep is not something that you can set.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.