SetGHError sets the GH CLI error message.
(msg string)
| 156 | |
| 157 | // SetGHError sets the GH CLI error message. |
| 158 | func (s *SettingsOverlay) SetGHError(msg string) { |
| 159 | s.ghError = msg |
| 160 | s.showGHError = true |
| 161 | } |
| 162 | |
| 163 | // HasGHError returns true if a GH CLI error is being displayed. |
| 164 | func (s *SettingsOverlay) HasGHError() bool { |
no outgoing calls