[READ-ONLY] Mirror of https://github.com/danielroe/dwaring87-webdev-wedding. Marissa & David's Wedding Website!
0

Configure Feed

Select the types of activity you want to include in your feed.

RSVP: Properly submit nos

+2 -2
+2 -2
components/RSVP/Edit.vue
··· 59 59 const updated_guest_props = { 60 60 name: guest.name !== original.name ? guest.name : undefined, 61 61 email: guest.email !== original.email ? guest.email : undefined, 62 - rsvp_welcome: guest.rsvp_welcome !== original.rsvp_welcome ? guest.rsvp_welcome : undefined, 63 - rsvp: guest.rsvp !== original.rsvp ? guest.rsvp : undefined, 62 + rsvp_welcome: guest.rsvp_welcome, 63 + rsvp: guest.rsvp, 64 64 dietary_restrictions: JSON.stringify(guest.dietary_restrictions) !== JSON.stringify(original.dietary_restrictions) ? guest.dietary_restrictions : undefined, 65 65 notes: guest.notes !== original.notes ? guest.notes : undefined 66 66 }