We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 999e431 + d12f84e commit e19a474Copy full SHA for e19a474
src/pages/PageFour/index.js
@@ -90,7 +90,8 @@ class PageFour extends React.Component {
90
const previousStageIndex = this.state.blockIndex;
91
const previousStage = allStages[previousStageIndex];
92
const newStage = allStages[index];
93
- const times = 20
+ const times = 20;
94
+ newStage.sort((itemA, itemB) => itemA.depth - itemB.depth);
95
// this.setState({
96
// drawBlocks: [...newStage]
97
// });
src/pages/PageFour/index.less
@@ -79,7 +79,7 @@ ul {
79
}
80
81
.sub_item {
82
- height: 30px;
+ //height: 30px;
83
text-align: center;
84
position: relative;
85
cursor: pointer;
0 commit comments