diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-04-18 09:59:28 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-04-18 09:59:28 +0200 |
commit | 1ac457a21dff313387b612126234cba9f7b42467 (patch) | |
tree | 4838c86cf4ed7aa7bdf48ab02dd6e4bcc1fb497b /src/web/js/components/RightPanel.react.js | |
parent | Removed debug log. (diff) | |
download | newspipe-1ac457a21dff313387b612126234cba9f7b42467.tar.gz newspipe-1ac457a21dff313387b612126234cba9f7b42467.tar.bz2 newspipe-1ac457a21dff313387b612126234cba9f7b42467.zip |
handling date formating server side
Diffstat (limited to 'src/web/js/components/RightPanel.react.js')
-rw-r--r-- | src/web/js/components/RightPanel.react.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/js/components/RightPanel.react.js b/src/web/js/components/RightPanel.react.js index 97a7c461..6322144f 100644 --- a/src/web/js/components/RightPanel.react.js +++ b/src/web/js/components/RightPanel.react.js @@ -310,11 +310,11 @@ var Feed = React.createClass({ return (<div className="panel-body"> <dl className="dl-horizontal"> <dt>Created on</dt> - <dd><JarrTime stamp={this.props.obj.created_stamp} + <dd><JarrTime stamp={this.props.obj.created_rel} text={this.props.obj.created_date} /> </dd> <dt>Last fetched</dt> - <dd><JarrTime stamp={this.props.obj.last_stamp} + <dd><JarrTime stamp={this.props.obj.last_rel} text={this.props.obj.last_retrieved} /> </dd> </dl> |