Add default option for state select

main
Chandler Swift 2024-03-07 00:49:10 -06:00
parent d2a80397b2
commit 6888c944a4
Signed by: chandlerswift
GPG Key ID: A851D929D52FB93F
1 changed files with 1 additions and 0 deletions

View File

@ -13,6 +13,7 @@
<label class="form-label">State:</label>
<div class="input-group">
<select class="form-select" v-model="state_name" :disabled="launched">
<option value="" selected>Select a state…</option>
<option v-for="state in states">{{ state }}</option>
</select>
<button class="btn btn-primary" type="button" @click="launch" :disabled="launched">Play</button>