removed inheritance

This commit is contained in:
mikael 2023-03-09 18:04:48 +01:00
parent 1267b7a78e
commit a70ed10103
No known key found for this signature in database
GPG key ID: 5B84855A310FE33F

View file

@ -74,7 +74,7 @@ func (o Options) Run() error {
styles := table.Styles{
Cell: defaultStyles.Cell.Inherit(o.CellStyle.ToLipgloss()),
Header: defaultStyles.Header.Inherit(o.HeaderStyle.ToLipgloss()),
Selected: defaultStyles.Selected.Inherit(o.SelectedStyle.ToLipgloss()),
Selected: o.SelectedStyle.ToLipgloss(),
}
var rows = make([]table.Row, 0, len(data))