Skip to content

Commit

Permalink
#1093 code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusWolschon committed Jan 14, 2022
1 parent 2927333 commit 934eeee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vue/src/apps/MealPlanView/MealPlanView.vue
Expand Up @@ -275,7 +275,7 @@ import moment from "moment"
import draggable from "vuedraggable"
import VueCookies from "vue-cookies"
import { ApiMixin, StandardToasts, ResolveUrlMixin, resolveDjangoUrl } from "@/utils/utils"
import { ApiMixin, StandardToasts, ResolveUrlMixin } from "@/utils/utils"
import { CalendarView, CalendarMathMixin } from "vue-simple-calendar/src/components/bundle"
import { ApiApiFactory } from "@/utils/openapi/api"
Expand Down Expand Up @@ -423,7 +423,7 @@ export default {
},
methods: {
openReceipt: function(recipe) {
window.open(resolveDjangoUrl('view_recipe', recipe.id))
window.open(this.resolveDjangoUrl('view_recipe', recipe.id))
},
addToShopping(entry) {
if (entry.originalItem.entry.recipe !== null) {
Expand Down

0 comments on commit 934eeee

Please sign in to comment.