1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-21 13:41:40 +00:00

フォルダーで検索するときに in:じゃなくて /にする +バグ修正

This commit is contained in:
Rokt33r
2015-11-15 00:57:29 +09:00
parent ef84c4e3da
commit 41e1630aac
5 changed files with 15 additions and 14 deletions

View File

@@ -14,10 +14,10 @@ function status (state = initialStatus, action) {
switch (action.type) {
case SELECT_ARTICLE:
state.articleKey = action.data.key
return state
return Object.assign({}, state)
case SEARCH_ARTICLE:
state.search = action.data.input
return state
return Object.assign({}, state)
default:
return state
}