Skip to content

Commit

Permalink
Merge pull request #464 from entrylabs/issue/8917
Browse files Browse the repository at this point in the history
[#8917] fix: ledpicker width 계산식 수정
  • Loading branch information
Tnks2U authored Dec 20, 2024
2 parents 1086192 + 335988b commit e2e6901
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ledPicker/ledPicker.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class LedPicker extends Component {
}

get CONTAINER_WIDTH() {
return 24 + this.state.ledStatus.length * 39;
return 26 + this.state.ledStatus.length * 40;
}

get CONTAINER_HEIGHT() {
Expand Down

0 comments on commit e2e6901

Please sign in to comment.