0
0
Fork 0

Sets button text to show default fetch amount even if the number input is empty.

This commit is contained in:
Tyler-A 2020-07-06 23:39:45 -06:00
parent ca83a1750f
commit efe184c3d4

View file

@ -59,7 +59,7 @@
<input type="number" v-model="count" placeholder="How Many?">
</div>
<div id="submit-button" v-if="button_type && duration">
<button @click="get_data()">Get Top {{count > 1 ? count : ``}} {{button_type}}</button>
<button @click="get_data()">Get Top {{count > 1 ? count : `10`}} {{button_type}}</button>
</div>
</div>
<div class="flex-row error" v-if="error.main">{{error.main}}</div>