summaryrefslogtreecommitdiff
path: root/tui.go
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2025-12-03 13:29:57 +0300
committerGrail Finder <wohilas@gmail.com>2025-12-03 13:29:57 +0300
commitcec10210c284a17cd341b48ee205bcfd278205bd (patch)
tree2976a543026c4ee79ad68bef5d970e104f684c4e /tui.go
parente5eaba1d5a6c07b3a02d38dcc81dbac49bffcc38 (diff)
Feat: props table instead of form
Diffstat (limited to 'tui.go')
-rw-r--r--tui.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/tui.go b/tui.go
index 65cd2d0..819b3f8 100644
--- a/tui.go
+++ b/tui.go
@@ -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 {