Skip to content

Commit

Permalink
Fixes #28
Browse files Browse the repository at this point in the history
  • Loading branch information
Dianliang233 committed May 5, 2024
1 parent 033101b commit 126ddc5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tools/blockDistribution/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -407,21 +407,21 @@ function update() {
:label="t('blockDistribution.overworld')"
v-if="overworldBlockMapFiltered.length !== 0"
>
<div style="width: 100%; overflow: auto" ref="overworld" />
<div style="overflow: auto" ref="overworld" />
</cdx-tab>
<cdx-tab
name="nether"
:label="t('blockDistribution.theNether')"
v-if="netherBlockMapFiltered.length !== 0"
>
<div style="width: 100%; overflow: auto" ref="nether" />
<div style="woverflow: auto" ref="nether" />
</cdx-tab>
<cdx-tab
name="end"
:label="t('blockDistribution.theEnd')"
v-if="endBlockMapFiltered.length !== 0"
>
<div style="width: 100%; overflow: auto" ref="end" />
<div style="overflow: auto" ref="end" />
</cdx-tab>
</cdx-tabs>
<cdx-checkbox v-model="logarithmicScale">
Expand Down

0 comments on commit 126ddc5

Please sign in to comment.