Skip to content

Commit

Permalink
hof/tui: some minor edits (#348)
Browse files Browse the repository at this point in the history
  • Loading branch information
verdverm authored Sep 17, 2023
1 parent 6237db6 commit dac7812
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/tui/modules/eval/help.go
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ const EvalHelpText = `
[gold]Docs: [deepskyblue]https://docs.hofstadter.io[-]
[gold]GitHub: [deepskyblue]https://github.com/hofstadter-io/hof[-]
[gold]Discord: [deepskyblue]https://discord.gg/6vgbKvPs[-]
[gold]Discord: [deepskyblue]https://discord.gg/BXwX7n6B8w[-]
[gold]Slack: [deepskyblue]https://join.slack.com/t/hofstadter-io/shared_invite/zt-e5f90lmq-u695eJur0zE~AG~njNlT1A[-]
`
2 changes: 1 addition & 1 deletion lib/tui/tview/treeview.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ func (n *TreeNode) ExpandAll() *TreeNode {
// CollapseAll collapses this node and all descendent nodes.
func (n *TreeNode) CollapseAll() *TreeNode {
n.Walk(func(node, parent *TreeNode) bool {
n.expanded = false
node.expanded = false
return true
})
return n
Expand Down

0 comments on commit dac7812

Please sign in to comment.