Fixed spelling of availible

Sorry about all the small changes across lots of files, I think it would be best to fix this though to avoid potential future confusion.
This commit is contained in:
mtoohey31
2021-01-03 15:16:16 -05:00
parent 7e5ba43ac0
commit 5c59400a5d
6 changed files with 13 additions and 13 deletions

View File

@@ -5,7 +5,7 @@
<v-card-title class="headline"> Choose a Recipe </v-card-title>
<v-card-text>
<v-autocomplete
:items="avaiableRecipes"
:items="availableRecipes"
v-model="selected"
clearable
return
@@ -85,7 +85,7 @@ export default {
},
computed: {
avaiableRecipes() {
availableRecipes() {
return this.$store.getters.getRecentRecipes;
},
},