Add date to notices display.

feature/default_network_editable
Kevin Serrano 8 years ago
parent 73998feeb2
commit 8d0f4c2799
No known key found for this signature in database
GPG Key ID: 7CC862A58D2889B4
  1. 16
      ui/app/notice.js

@ -23,6 +23,7 @@ function Notice () {
Notice.prototype.render = function () {
const props = this.props
const title = props.lastUnreadNotice.title
const date = props.lastUnreadNotice.date
return (
h('.flex-column.flex-center.flex-grow', [
@ -30,7 +31,6 @@ Notice.prototype.render = function () {
style: {
background: '#EBEBEB',
color: '#AEAEAE',
marginBottom: 24,
width: '100%',
fontSize: '20px',
textAlign: 'center',
@ -40,6 +40,20 @@ Notice.prototype.render = function () {
title,
]),
h('h5.flex-center.text-transform-uppercacse.terms-header', {
style: {
background: '#EBEBEB',
color: '#AEAEAE',
marginBottom: 24,
width: '100%',
fontSize: '20px',
textAlign: 'center',
padding: 6,
},
}, [
date,
]),
h('style', `
.markdown {

Loading…
Cancel
Save