Shift is now a select rather than text input.
This commit is contained in:
parent
eb72f387e0
commit
cfff34b8f7
@ -33,9 +33,15 @@
|
|||||||
</b-row>
|
</b-row>
|
||||||
<b-row align-h="center">
|
<b-row align-h="center">
|
||||||
<b-col>
|
<b-col>
|
||||||
<b-form-group label="Who">
|
<b-form-group label="Shift">
|
||||||
<b-form-input :value="whom" @input="setWhom" type="text" placeholder="i.e. Shift name. Individual names will be entered later."
|
<b-form-select v-bind:value="whom" @change="setWhom($event)" style="text-align:center;" required>
|
||||||
style="text-align:center;" required></b-form-input>
|
<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-form-group>
|
||||||
</b-col>
|
</b-col>
|
||||||
</b-row>
|
</b-row>
|
||||||
|
Loading…
Reference in New Issue
Block a user