Skip to content

Commit

Permalink
update no lunch for november
Browse files Browse the repository at this point in the history
  • Loading branch information
aw-0 committed Nov 7, 2023
1 parent ae35eb7 commit 9c00d4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/cards/LunchCard.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<card v-show="bell?.school && bell?.type != 'Summer' && lunch">
<card v-show="bell?.school && bell?.type != 'Summer' && (lunch || noLunchData)">
<div class="title">Lunch</div>
<div v-if="noLunchData" class="no-data lunch">
No Lunch Data
Expand All @@ -25,7 +25,7 @@ export default {
components: { Card, WhatIsThis },
data() {
return {
noLunchData: false,
noLunchData: true,
};
},
computed: {
Expand Down

0 comments on commit 9c00d4d

Please sign in to comment.