1
0
Fork 0
mirror of https://github.com/Acamaeda/The-Modding-Tree.git synced 2024-11-24 09:21:46 +00:00

Fix blank height

This commit is contained in:
Acamaeda 2020-10-23 15:07:27 -04:00
parent f5213e8158
commit 0a0b041911
2 changed files with 2 additions and 1 deletions

View file

@ -1,5 +1,6 @@
# The Modding Tree changelog:
- Fixed the "blank" component breaking if only specifying the height.
- Fixed some numbers not displaying with enough digits.
### v2.1.3.1 - 10/21/20

View file

@ -24,7 +24,7 @@ function loadVue() {
<div class = "instant">
<div class = "instant" v-if="!data" v-bind:style="{'width': '8px', 'height': '17px'}"></div>
<div class = "instant" v-else-if="Array.isArray(data)" v-bind:style="{'width': data[0], 'height': data[1]}"></div>
<div class = "instant" v-else v-bind:style="{'width': '8px', 'height': 'data'}"><br></div>
<div class = "instant" v-else v-bind:style="{'width': '8px', 'height': data}"><br></div>
</div>
`
})