diff options
author | Struan Donald <struan@exo.org.uk> | 2013-04-25 12:06:43 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2013-04-25 12:06:43 +0100 |
commit | b28494cbff3303d279d15608196eeba0124cce63 (patch) | |
tree | 2ff67966394bb0664287edb3c32563aee311f3ea /www/js/models/draft.js | |
parent | bfa76cede76ab1937437cf0e9134499a85f5fd6e (diff) |
use two digits for minutes in time on reports page
Diffstat (limited to 'www/js/models/draft.js')
-rw-r--r-- | www/js/models/draft.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/models/draft.js b/www/js/models/draft.js index 9f3815f..b033f21 100644 --- a/www/js/models/draft.js +++ b/www/js/models/draft.js @@ -29,7 +29,7 @@ }, createdDate: function() { - return moment.utc( this.get('created') ).format( 'H:m Do MMM' ); + return moment.utc( this.get('created') ).format( 'H:mm Do MMM' ); } }) }); |