@dcrackel/hematournamentui 1.0.576 → 1.0.577
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.
|
@@ -30891,6 +30891,7 @@ const mT = (n, e) => {
|
|
|
30891
30891
|
checkIfNewTournament() {
|
|
30892
30892
|
if (!this.tournament || Object.keys(this.tournament).length === 0 || !this.tournament.Name) {
|
|
30893
30893
|
this.isNewTournament = !0, this.localTournament = {
|
|
30894
|
+
TournamentId: 0,
|
|
30894
30895
|
Name: "",
|
|
30895
30896
|
Address: "",
|
|
30896
30897
|
TotalDays: 1,
|
|
@@ -30921,7 +30922,7 @@ const mT = (n, e) => {
|
|
|
30921
30922
|
this.tournament.imageLink = n, this.$emit("update:image", n);
|
|
30922
30923
|
},
|
|
30923
30924
|
updateTournament(n) {
|
|
30924
|
-
|
|
30925
|
+
this.localTournament = { ...this.localTournament, ...n }, Object.keys(n).forEach((e) => {
|
|
30925
30926
|
this.validation[e] && (this.validation[e] = ma(e, n[e]));
|
|
30926
30927
|
});
|
|
30927
30928
|
},
|