Results 8 comments of Robert Mills

If you're here looking to fix the same problem on a *nix machine, delete the keys located in ~/.local/share/charm

I had to go back to the version 0.4.0 to log in. After, you can upgrade to the latest and it should work still.

Sorry for the late response. And thank you for the quick fix. The fix works great for a static table. Can I still highlight selected rows with this?

I figured out to use the WithRows().HighlightStyle() Thanks! Edit: looks like that doesn't change the background, just the foreground.

Just to be more complete; If you use the HighlightStyle with the WithRowsStyleFunc, it appears that only the foreground color of the currently highlighted row will change the to the...

This is super old, but this is possible. `WithRowStyleFunc(rowStyleFunc).` ```go func rowStyleFunc(input table.RowStyleFuncInput) lipgloss.Style { // Check if this row is highlighted. if input.IsHighlighted { // or input.Highlighted depending on...