From 08c15b5f5e25c3647d98c4c6fab5aff58dea99f4 Mon Sep 17 00:00:00 2001 From: Yoshua Wuyts Date: Fri, 8 Jul 2016 12:19:15 +0200 Subject: [PATCH] onAction: prefix views with view --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 5c140f6..f87b02d 100644 --- a/index.js +++ b/index.js @@ -117,7 +117,7 @@ function choo (opts) { } function wrap (child, route) { - const send = createSend(route, true) + const send = createSend('view: ' + route, true) return function chooWrap (params, state) { const nwPrev = prev const nwState = prev = xtend(state, { params: params })