Skip to content

Commit

Permalink
fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Ruf committed Aug 21, 2024
1 parent ad609b2 commit 53e3391
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ const bookedCombi = computed(() => {
if (dishId === undefined || dishId === null) return undefined;
return hasParticipantBookedCombiDish(props.dayId, cleanParticipantName(props.participant), dishId);
});
const bookedMeal = computed(() => hasParticipantBookedMeal(props.dayId, cleanParticipantName(props.participant), props.meal.id));
const bookedMeal = computed(() =>
hasParticipantBookedMeal(props.dayId, cleanParticipantName(props.participant), props.meal.id)
);
function cleanParticipantName(name: string): string {
return name.replace(/\s\(gast\)\s*/i, ' (Guest)');
Expand Down

0 comments on commit 53e3391

Please sign in to comment.