Skip to content

Commit ba151fa

Browse files
author
kencx
committed
fix: Remove deprecated Copy() method
1 parent acd0d31 commit ba151fa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ui/table/row.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ func (r *Row) Render() string {
110110

111111
if r.IsFiltered {
112112
unmatched := s.Normal.Inline(true)
113-
matched := s.Filtered.Copy().Inherit(unmatched)
113+
matched := s.Filtered.Inherit(unmatched)
114114
str := lipgloss.StyleRunes(r.String(), r.MatchedIndex, matched, unmatched)
115115

116116
if r.IsHeading {

0 commit comments

Comments
 (0)