@dcrackel/hematournamentui 1.0.42 → 1.0.44
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.
|
@@ -561,9 +561,6 @@ const lr = /* @__PURE__ */ Ge(sg, [["render", lg]]), ug = {
|
|
|
561
561
|
StartDate: "",
|
|
562
562
|
EndDate: "",
|
|
563
563
|
Description: "",
|
|
564
|
-
ClubId: null,
|
|
565
|
-
AddressId: null,
|
|
566
|
-
"Club.Name": "",
|
|
567
564
|
Address: [{
|
|
568
565
|
Name: "",
|
|
569
566
|
Address1: "",
|
|
@@ -589,7 +586,7 @@ function mg(n, e, t, r, i, a) {
|
|
|
589
586
|
weight: "semi-bold"
|
|
590
587
|
}, null, 8, ["text"]),
|
|
591
588
|
ee(o, {
|
|
592
|
-
text: t.detail.Address[0].Name,
|
|
589
|
+
text: t.detail.Address && t.detail.Address[0].Name,
|
|
593
590
|
color: "primary",
|
|
594
591
|
size: "sm",
|
|
595
592
|
weight: "normal"
|
|
@@ -27528,9 +27525,16 @@ const NO = /* @__PURE__ */ Ge(OO, [["render", EO]]), PO = {
|
|
|
27528
27525
|
tournament: {
|
|
27529
27526
|
name: "",
|
|
27530
27527
|
imageLink: "",
|
|
27531
|
-
|
|
27532
|
-
|
|
27533
|
-
|
|
27528
|
+
address: [
|
|
27529
|
+
{
|
|
27530
|
+
Name: "",
|
|
27531
|
+
Address1: "",
|
|
27532
|
+
City: "",
|
|
27533
|
+
State: "",
|
|
27534
|
+
Zip: "",
|
|
27535
|
+
Coordinates: ""
|
|
27536
|
+
}
|
|
27537
|
+
],
|
|
27534
27538
|
startDate: "",
|
|
27535
27539
|
totalDays: 1,
|
|
27536
27540
|
description: "",
|
|
@@ -27564,7 +27568,14 @@ const NO = /* @__PURE__ */ Ge(OO, [["render", EO]]), PO = {
|
|
|
27564
27568
|
});
|
|
27565
27569
|
},
|
|
27566
27570
|
handleAddressUpdate(n) {
|
|
27567
|
-
this.tournament.
|
|
27571
|
+
this.tournament.address = [{
|
|
27572
|
+
Name: n.Name,
|
|
27573
|
+
Address1: n.Address1,
|
|
27574
|
+
City: n.City,
|
|
27575
|
+
State: n.State,
|
|
27576
|
+
Zip: n.Zip,
|
|
27577
|
+
Coordinates: n.coordinates
|
|
27578
|
+
}];
|
|
27568
27579
|
},
|
|
27569
27580
|
handleDateUpdate(n) {
|
|
27570
27581
|
this.tournament.startDate = n;
|