I would like rownames to appear on my gt table while being able to interactively sort and navigate through pages, but whenever I make the gt object interactive the rownames go away.
Here is a simple reproducible example:
library(tibble)
library(gt)
gt(iris, rownames_to_stub = T)
gt(iris, rownames_to_stub = T) %>%
opt_interactive()
Is this result intentional or a bug?