summaryrefslogtreecommitdiff
path: root/internal/tui/entries.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-04 11:41:35 +0200
committerPaul Buetow <paul@buetow.org>2026-03-04 11:41:35 +0200
commitfcac74b4b06ac679e02e7976b79dcdad1e593810 (patch)
tree25079fe3c9d910c2ea273d5dd277a3816b99d75b /internal/tui/entries.go
parent97aa8a6f666f5f40859c8a9aa4948bde435cf18f (diff)
chore: fix code-quality and 100-go-mistakes findings
Addresses Taskwarrior findings for golangci-lint v2 config, deprecated APIs, unchecked test errors, dead code, and staticcheck cleanups. Task UUIDs: 461c529c-5de3-4ceb-a761-5534f9f4342e, 8696d39e-d911-4ffe-8708-af1652a084b7, 0f63064b-be12-4fd6-a412-2904f94eb3dd, c051e84f-0e7b-48bc-8f16-e65133636ceb, 076cf172-e5fb-4f55-a1d6-1bce71e2f131, 1ed5b895-da61-4114-8321-cb129b24d6e1, 659311db-10af-4ec5-a08a-92240fa23489
Diffstat (limited to 'internal/tui/entries.go')
-rw-r--r--internal/tui/entries.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/tui/entries.go b/internal/tui/entries.go
index 2d35708..e0e76bf 100644
--- a/internal/tui/entries.go
+++ b/internal/tui/entries.go
@@ -1064,7 +1064,7 @@ func (m *EntriesModel) renderTimelineTable(styles Styles) string {
for colIdx := range row {
cellStyles[colIdx] = styles.TableCell
if idx == m.cursor {
- cellStyles[colIdx] = styles.TableCell.Copy().Bold(true)
+ cellStyles[colIdx] = styles.TableCell.Bold(true)
if entriesColumn(colIdx) == m.selectedColumn {
cellStyles[colIdx] = styles.TableSelected
}