fix: 更改normalizeSteps方法的执行时机

This commit is contained in:
zhangzhulei 2023-04-13 10:18:17 +08:00
parent f5373bfdd6
commit 20837ac189

View File

@ -408,17 +408,16 @@ export default class Wizard extends React.Component<WizardProps, WizardState> {
!hiddenFlag && rawSteps.push(steps[i]);
}
this.setState({
rawSteps: rawSteps.map((step, index) => {
delete step.hiddenOn;
return Object.assign(step, {
rawSteps: rawSteps.map((step, index) => ({
...steps,
hiddenOn: '',
title:
step.title ||
step.label ||
__('Steps.step', {
index: index + 1
})
});
})
}))
});
}