PR welcomeenhancementhelp wanted
仓库指标
- 星标
- (2,924 个星标)
- PR 合并指标
- (30 天内没有已合并 PR)
描述
If I dispatch a path like this, then the / will error out my client and not cause it to dispatch.
A schema is expecting the variable name of order/statistics. Can we add handling for special characters like this on the schema entities?
const mapDispatchToProps = (dispatch, { limit }) => ({
readList: () =>
dispatch(
resourceListReadRequest('orders/statistics', { _limit: limit })
),
})