Skip to content

Commit

Permalink
Merge pull request #1155 from brave/sync-added-on-string
Browse files Browse the repository at this point in the history
Display device Added on by only date
  • Loading branch information
darkdh committed Dec 19, 2018
1 parent 9c251e8 commit 7c29897
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/brave_sync/ui/reducers/sync_reducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const syncReducer: Reducer<Sync.State | undefined> = (state: Sync.State | undefi
return {
name: device.name,
id: device.device_id,
lastActive: (new Date(device.last_active)).toString()
lastActive: (new Date(device.last_active)).toDateString()
}
})

Expand Down

0 comments on commit 7c29897

Please sign in to comment.