mirror of
https://github.com/strapi/strapi.git
synced 2025-09-25 16:29:34 +00:00
Fix delete for bookshelf
This commit is contained in:
parent
9c22dc85d5
commit
a7e6e3b8ae
@ -33,7 +33,7 @@ function listPageReducer(state = initialState, action) {
|
||||
return o._id !== action.id;
|
||||
}
|
||||
|
||||
return o.id !== action.id;
|
||||
return o.id !== parseInt(action.id, 10);
|
||||
})
|
||||
));
|
||||
case CHANGE_PARAMS:
|
||||
|
Loading…
x
Reference in New Issue
Block a user