We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0f80912 + 3caf08e commit 369fa96Copy full SHA for 369fa96
1 file changed
ui/tui/views/dashboard/model.go
@@ -60,18 +60,21 @@ func New(c client.Client) *Model {
60
}
61
62
func (m Model) Init() tea.Cmd {
63
+ // TODO setup table model and table controll
64
return m.reload()
65
66
67
func (m *Model) Update(msg tea.Msg) tea.Cmd {
68
if m.size.UpdateFromMsg(msg) {
69
+ // TODO rerender table (only here)
70
return nil
71
72
73
switch msg := msg.(type) {
74
case msgReloadResult:
75
m.data = msg.data
76
m.err = msg.err
77
78
79
80
0 commit comments