I really like the package, thanks for developing it! I'm trying to set the width of columns in a table with col_widths, but when the table has one column specificied as rowname_col, the last column in the table isn't shown.
works as expected
iris %>%
gt() %>%
cols_width(
vars(Sepal.Width) ~ px(120),
vars(Petal.Length) ~ px(120),
vars(Petal.Width) ~ px(120),
vars(Species) ~ px(120),
everything() ~ px(250))

Species column is removed when Sepal.Length made into rownames
iris %>%
gt(rowname_col = 'Sepal.Length') %>%
cols_width(
vars(Sepal.Width) ~ px(120),
vars(Petal.Length) ~ px(120),
vars(Petal.Width) ~ px(120),
vars(Species) ~ px(120),
everything() ~ px(250))

Thanks so much for reporting this. This will get fixed soon!
Most helpful comment
Thanks so much for reporting this. This will get fixed soon!