fixup, add docs

This commit is contained in:
2025-07-12 22:49:05 -07:00
parent 686cb97eb3
commit 001992a688
9 changed files with 21 additions and 70 deletions

View File

@@ -6,7 +6,6 @@ import (
tea "github.com/charmbracelet/bubbletea"
)
// Edit Cell Model
type EditCellModel struct {
Shared *SharedData
rowIndex int
@@ -88,4 +87,5 @@ func (m *EditCellModel) View() string {
content += HelpStyle.Render("enter: save • esc: cancel")
return content
}
}