alpha
Login
or
Join now
danielroe.dev
/
dwaring87-webdev-wedding
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/danielroe/dwaring87-webdev-wedding. Marissa & David's Wedding Website!
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
RSVP: Properly submit nos
author
David Waring
date
3 years ago
(Apr 23, 2023, 8:34 AM -0400)
commit
3e447a25
3e447a25de903f3a223e9aee9df36202d6bd2405
parent
80098c08
80098c0861e69cc7a406997f6fc9591d6c60f9cd
+2
-2
1 changed file
Expand all
Collapse all
Unified
Split
components
RSVP
Edit.vue
+2
-2
components/RSVP/Edit.vue
View file
Reviewed
···
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
62
-
rsvp_welcome: guest.rsvp_welcome !== original.rsvp_welcome ? guest.rsvp_welcome : undefined,
63
63
-
rsvp: guest.rsvp !== original.rsvp ? guest.rsvp : undefined,
62
62
+
rsvp_welcome: guest.rsvp_welcome,
63
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
}