deps: bump sheet-router

This commit is contained in:
Yoshua Wuyts
2016-05-21 15:32:01 +09:00
parent fce8d9618a
commit 620fe35426
4 changed files with 4 additions and 4 deletions
+2 -1
View File
@@ -3,6 +3,7 @@ const choo = require('../../../')
module.exports = function (params, state, send) {
const mailbox = params.mailbox
const messages = state[mailbox + ':messages']
return choo.view`
<div>
<div class="db cf w-100">
@@ -11,7 +12,7 @@ module.exports = function (params, state, send) {
<div class="fl mb3 w-25 mt0 b">From</th>
<div class="fl mb3 w-25 mt0 b">To</th>
</div>
${state[mailbox + ':messages'].map(function (msg) {
${messages.map(function (msg) {
return createMessage(msg, mailbox)
})}
</div>