Feat: props table instead of form

This commit is contained in:
Grail Finder
2025-12-03 13:29:57 +03:00
parent e5eaba1d5a
commit cec10210c2
4 changed files with 321 additions and 5 deletions

4
tui.go
View File

@@ -912,8 +912,8 @@ func init() {
return nil
}
if event.Key() == tcell.KeyCtrlP {
propsForm := makePropsForm(defaultLCPProps)
pages.AddPage(propsPage, propsForm, true, true)
propsTable := makePropsTable(defaultLCPProps)
pages.AddPage(propsPage, propsTable, true, true)
return nil
}
if event.Key() == tcell.KeyCtrlN {