mirror of
https://github.com/trafficlunar/blockmatic.git
synced 2026-06-28 06:34:13 +00:00
refactor: rename fallable* to falling
fallable is not a word.
This commit is contained in:
parent
6779713897
commit
a9baef3164
3 changed files with 27 additions and 27 deletions
|
|
@ -49,7 +49,7 @@ function OpenImage({ close }: DialogProps) {
|
|||
const [blockTypeCheckboxesChecked, setBlockTypeCheckboxesChecked] = useState({
|
||||
creative: false,
|
||||
tile_entity: false,
|
||||
fallable: false,
|
||||
falling: false,
|
||||
});
|
||||
|
||||
useEffect(() => {
|
||||
|
|
@ -271,11 +271,11 @@ function OpenImage({ close }: DialogProps) {
|
|||
</div>
|
||||
<div>
|
||||
<Checkbox
|
||||
id="fallable"
|
||||
checked={blockTypeCheckboxesChecked.fallable}
|
||||
onCheckedChange={(value) => onBlockTypeCheckedChange(value, "fallable")}
|
||||
id="falling"
|
||||
checked={blockTypeCheckboxesChecked.falling}
|
||||
onCheckedChange={(value) => onBlockTypeCheckedChange(value, "falling")}
|
||||
/>
|
||||
<Label htmlFor="fallable">Fallable</Label>
|
||||
<Label htmlFor="falling">Falling</Label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue