Add timestamp editor

This commit is contained in:
Martin Pander
2026-02-02 10:55:47 +01:00
parent 7032d0fa54
commit fc8e9481c3
19 changed files with 922 additions and 113 deletions

View File

@ -13,7 +13,7 @@ type Item struct {
text string
}
func NewItem(text string) Item { return Item{text: text} }
func NewItem(text string) Item { return Item{text: text} }
func (i Item) Title() string { return i.text }
func (i Item) Description() string { return "" }
func (i Item) FilterValue() string { return i.text }
@ -206,4 +206,4 @@ func (p *Picker) SelectItemByFilterValue(filterValue string) {
break
}
}
}
}