mirror of
https://github.com/Acamaeda/The-Modding-Tree.git
synced 2024-11-28 02:51:55 +00:00
Fix blank height
This commit is contained in:
parent
f5213e8158
commit
0a0b041911
2 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
||||||
# The Modding Tree changelog:
|
# The Modding Tree changelog:
|
||||||
|
|
||||||
|
- Fixed the "blank" component breaking if only specifying the height.
|
||||||
- Fixed some numbers not displaying with enough digits.
|
- Fixed some numbers not displaying with enough digits.
|
||||||
|
|
||||||
### v2.1.3.1 - 10/21/20
|
### v2.1.3.1 - 10/21/20
|
||||||
|
|
2
js/v.js
2
js/v.js
|
@ -24,7 +24,7 @@ function loadVue() {
|
||||||
<div class = "instant">
|
<div class = "instant">
|
||||||
<div class = "instant" v-if="!data" v-bind:style="{'width': '8px', 'height': '17px'}"></div>
|
<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-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>
|
</div>
|
||||||
`
|
`
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue