Skip to content

Commit

Permalink
Remove alternating row styles in workflow list
Browse files Browse the repository at this point in the history
  • Loading branch information
Cerebrovinny committed Jan 24, 2025
1 parent a862cb2 commit e7a0cc4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pkg/list/list_workflows.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,7 @@ func FilterAndListWorkflows(fileFlag string, listConfig schema.ListConfig, forma
if row == 0 {
return style.Inherit(theme.Styles.CommandName).Align(lipgloss.Center)
}
if row%2 == 0 {
return style.Inherit(theme.Styles.GrayText)
}
// Use consistent style for all rows
return style.Inherit(theme.Styles.Description)
}).
Headers(header...).
Expand Down

0 comments on commit e7a0cc4

Please sign in to comment.