We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d5eff1 commit c0af210Copy full SHA for c0af210
1 file changed
ui/tui/views/dashboard/model.go
@@ -159,13 +159,6 @@ func (m Model) View() string {
159
return lipgloss.JoinVertical(lipgloss.Left, lines...)
160
}
161
162
-func formatHostStatus(upToDate, outdated int) string {
163
- if outdated > 0 {
164
- return fmt.Sprintf(i18n.T("dashboard.hosts_status_mixed"), upToDate, outdated)
165
- }
166
- return fmt.Sprintf(i18n.T("dashboard.hosts_status_clean"), upToDate)
167
-}
168
-
169
func formatSystemKeySerial(serial int) string {
170
if serial <= 0 {
171
return i18n.T("dashboard.system_key.not_generated")
0 commit comments