Shift is now a select rather than text input.

This commit is contained in:
neviyn 2018-11-14 13:06:53 +00:00
parent eb72f387e0
commit cfff34b8f7

View File

@ -33,9 +33,15 @@
</b-row>
<b-row align-h="center">
<b-col>
<b-form-group label="Who">
<b-form-input :value="whom" @input="setWhom" type="text" placeholder="i.e. Shift name. Individual names will be entered later."
style="text-align:center;" required></b-form-input>
<b-form-group label="Shift">
<b-form-select v-bind:value="whom" @change="setWhom($event)" style="text-align:center;" required>
<option :value=null>Please select an option</option>
<option value="A">A</option>
<option value="B">B</option>
<option value="C">C</option>
<option value="D">D</option>
<option value="E">E</option>
</b-form-select>
</b-form-group>
</b-col>
</b-row>