Skip to content

Commit

Permalink
chore(ui): format date value
Browse files Browse the repository at this point in the history
  • Loading branch information
PhearZero committed Nov 27, 2024
1 parent fc8b3f3 commit 58d3e8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/pages/accounts/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func (m ViewModel) makeRows() *[]table.Row {
rows := make([]table.Row, 0)

for key := range m.Data.Accounts {
expires := m.Data.Accounts[key].Expires.String()
expires := m.Data.Accounts[key].Expires.Format(time.RFC822)
if m.Data.Status.State != internal.StableState {
expires = "SYNCING"
}
Expand Down

0 comments on commit 58d3e8d

Please sign in to comment.