summaryrefslogtreecommitdiffhomepage
path: root/internal/tui/components/core
diff options
context:
space:
mode:
Diffstat (limited to 'internal/tui/components/core')
-rw-r--r--internal/tui/components/core/status.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/tui/components/core/status.go b/internal/tui/components/core/status.go
index ca02265e1..28120a430 100644
--- a/internal/tui/components/core/status.go
+++ b/internal/tui/components/core/status.go
@@ -21,7 +21,7 @@ import (
type StatusCmp interface {
tea.Model
- SetHelpMsg(string)
+ SetHelpWidgetMsg(string)
}
type statusCmp struct {
@@ -263,7 +263,7 @@ func (m statusCmp) model() string {
Render(model.Name)
}
-func (m statusCmp) SetHelpMsg(s string) {
+func (m statusCmp) SetHelpWidgetMsg(s string) {
// Update the help widget text using the getHelpWidget function
helpWidget = getHelpWidget(s)
}