Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
bmf-san committed Feb 13, 2022
1 parent 48bd032 commit b2743e5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/src/pages/CreatePost.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
<label for="status">Status</label>
<select v-model="status">
<option disabled></option>
<option v-for="status in statuses" :key="status">
{{ status }}
<option v-for="statusVal in statuses" :key="statusVal">
{{ statusVal }}
</option>
</select>
<input class="submit-button" type="submit" value="Save" />
Expand Down
4 changes: 2 additions & 2 deletions app/src/pages/EditComment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<p>{{ body }}</p>
<select v-model="status">
<option disabled value="">Select a status</option>
<option v-for="status of statuses" :key="status">
{{ status }}
<option v-for="statusVal of statuses" :key="statusVal">
{{ statusVal }}
</option>
</select>
<input class="submit-button" type="submit" value="Save" />
Expand Down
4 changes: 2 additions & 2 deletions app/src/pages/EditPost.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@
<label for="status">Status</label>
<select v-model="status">
<option disabled></option>
<option v-for="status of statuses" :key="status">
{{ status }}
<option v-for="statusVal of statuses" :key="statusVal">
{{ statusVal }}
</option>
</select>
<input class="submit-button" type="submit" value="Save" />
Expand Down

0 comments on commit b2743e5

Please sign in to comment.