Skip to content

Commit

Permalink
put cid in wrong place
Browse files Browse the repository at this point in the history
  • Loading branch information
fixterjake committed Feb 27, 2024
1 parent bdeb005 commit 58de64c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/instructor/solocerts/New.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
<div class="col s12 input-field">
<select v-model="form.cid" required class="materialize-select">
<option value="" disabled selected>Select a controller</option>
<option v-for="controller in controllers" :value="controller.cid" :key="controller.cid">{{ controller.fname }} {{ controller.lname }}</option>
<option v-for="controller in controllers" :value="controller.cid" :key="controller.cid">{{ controller.fname }} {{ controller.lname }} - {{ controller.cid }}</option>
</select>
<label>Controller - {{ controller.cid }}</label>
<label>Controller</label>
</div>
<div class="col s12 input-field">
<input id="position" type="text" minlength=7 maxlength=7 class="validate" placeholder="MEM_APP" v-model="form.position" required>
Expand Down

0 comments on commit 58de64c

Please sign in to comment.