Skip to content
Snippets Groups Projects
Verified Commit 748301c0 authored by Griefed's avatar Griefed :joystick:
Browse files

chore: Formatting changes for just that little bit of better readability

parent 47bd9e28
No related branches found
No related tags found
No related merge requests found
......@@ -3,9 +3,9 @@
<span v-for="(xRow, index) in store.state.lttMap" :key="index">
<div class="row no-wrap"
v-bind:class="[{
firstRow: (index == 0),
moveup: (index !=0),
}, (index != 0 && !(index%2))?'shifted':'notShifted']"
firstRow: (index === 0),
moveup: (index !== 0),
}, (index !== 0 && !(index%2))?'shifted':'notShifted']"
>
<Tile
v-for="(tile, i) in xRow"
......@@ -13,7 +13,7 @@
:typeValue="tile.typeId"
@update:typeValue="tile.typeId = $event"
v-bind:id="tile.x+'_'+tile.y"
:class="{tileMl: (i!=0)?1:0}"
:class="{tileMl: (i !== 0) ? 1 : 0}"
v-bind:key="i">
</Tile>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment