@dcrackel/hematournamentui 1.0.42 → 1.0.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/stories/Templates/TournamentManagement/AddTournament/PageOne/AddTournamentPageOne.vue
CHANGED
|
@@ -93,9 +93,16 @@ export default {
|
|
|
93
93
|
tournament: {
|
|
94
94
|
name: '',
|
|
95
95
|
imageLink: '',
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
96
|
+
"address": [
|
|
97
|
+
{
|
|
98
|
+
"Name": "",
|
|
99
|
+
"Address1": "",
|
|
100
|
+
"City": "",
|
|
101
|
+
"State": "",
|
|
102
|
+
"Zip": "",
|
|
103
|
+
"Coordinates": ""
|
|
104
|
+
}
|
|
105
|
+
],
|
|
99
106
|
startDate: '',
|
|
100
107
|
totalDays: 1,
|
|
101
108
|
description: '',
|
|
@@ -141,9 +148,14 @@ export default {
|
|
|
141
148
|
});
|
|
142
149
|
},
|
|
143
150
|
handleAddressUpdate(updatedAddress) {
|
|
144
|
-
this.tournament.
|
|
145
|
-
|
|
146
|
-
|
|
151
|
+
this.tournament.address = [{
|
|
152
|
+
"Name": updatedAddress.Name,
|
|
153
|
+
"Address1": updatedAddress.Address1,
|
|
154
|
+
"City": updatedAddress.City,
|
|
155
|
+
"State": updatedAddress.State,
|
|
156
|
+
"Zip": updatedAddress.Zip,
|
|
157
|
+
"Coordinates": updatedAddress.coordinates
|
|
158
|
+
}];
|
|
147
159
|
},
|
|
148
160
|
handleDateUpdate(newDate) {
|
|
149
161
|
this.tournament.startDate = newDate;
|