Skip to content

Commit

Permalink
UI-2602: fix issues with date in faxes manager
Browse files Browse the repository at this point in the history
  • Loading branch information
JRMaitre committed Mar 28, 2017
1 parent 708a385 commit 61cfa4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ define(function(require){
fax.formatted.error = details.result_text;
}

fax.formatted.timestamp = monster.util.toFriendlyDate(fax.hasOwnProperty('timestamp') ? fax.timestamp : details.pvt_delivered_date);
fax.formatted.timestamp = monster.util.toFriendlyDate(fax.created);
fax.formatted.receivingFaxbox = self.appFlags.faxboxes.hasOwnProperty(fax.faxbox_id) ? self.appFlags.faxboxes[fax.faxbox_id].name : '-';
fax.formatted.receivingNumber = monster.util.formatPhoneNumber(fax.to_number);
fax.formatted.sendingFaxbox = self.appFlags.faxboxes.hasOwnProperty(fax.faxbox_id) ? self.appFlags.faxboxes[fax.faxbox_id].name : '-';
Expand Down
2 changes: 1 addition & 1 deletion i18n/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"table": {
"columns": {
"status": "Status",
"sent": "Sent",
"sent": "Date",
"sendingFaxbox": "Sending Faxbox",
"sendingNumber": "Sending Number",
"received": "Received",
Expand Down

0 comments on commit 61cfa4c

Please sign in to comment.