Skip to content

Commit

Permalink
Merge pull request #27 from bliss/issue-24
Browse files Browse the repository at this point in the history
Issue #24 - Swap Messages td's for div's in generated html
  • Loading branch information
MJJoyce authored and GitHub Enterprise committed Feb 23, 2017
2 parents c082b7a + a679e71 commit 5302f83
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bliss/gui/static/js/bliss/gui/Messages.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ const Messages =
view (vnode) {
const rows = this._messages.map( msg =>
m('div', { class: 'row log-' + msg.severity.toLowerCase() }, [
m('td', {class: 'col-lg-3'}, format.datetime(msg.timestamp)),
m('td', {class: 'col-lg-2'}, msg.severity),
m('td', {class: 'col-lg-7'}, msg.message)
m('div', {class: 'col-lg-3'}, format.datetime(msg.timestamp)),
m('div', {class: 'col-lg-2'}, msg.severity),
m('div', {class: 'col-lg-7'}, msg.message)
])
)

Expand Down

0 comments on commit 5302f83

Please sign in to comment.