From 06b6282be870ee3a5cfde7f4af66fb9ee984547b Mon Sep 17 00:00:00 2001 From: _aandres Date: Sat, 28 Jan 2023 22:20:31 +0100 Subject: [PATCH] fix [front]: respect nuxt directive --- front/components/movieCard/listPerMonth.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/components/movieCard/listPerMonth.vue b/front/components/movieCard/listPerMonth.vue index b4e7530..3de2f80 100644 --- a/front/components/movieCard/listPerMonth.vue +++ b/front/components/movieCard/listPerMonth.vue @@ -25,7 +25,7 @@ import { FilmsByMonth } from "~/composables/types" import { PropType } from "@vue/runtime-core" defineProps({ - filmsByMonth: { type: Array as PropType, default: [] }, + filmsByMonth: { type: Array as PropType, default: () => [] }, })