Fix delete for bookshelf

This commit is contained in:
cyril lopez 2018-02-21 11:05:44 +01:00
parent 9c22dc85d5
commit a7e6e3b8ae

View File

@ -33,7 +33,7 @@ function listPageReducer(state = initialState, action) {
return o._id !== action.id; return o._id !== action.id;
} }
return o.id !== action.id; return o.id !== parseInt(action.id, 10);
}) })
)); ));
case CHANGE_PARAMS: case CHANGE_PARAMS: