aboutsummaryrefslogtreecommitdiff
path: root/src/web/js/components/RightPanel.react.js
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-18 09:59:28 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-18 09:59:28 +0200
commit1ac457a21dff313387b612126234cba9f7b42467 (patch)
tree4838c86cf4ed7aa7bdf48ab02dd6e4bcc1fb497b /src/web/js/components/RightPanel.react.js
parentRemoved debug log. (diff)
downloadnewspipe-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.js4
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>
bgstack15