@dcrackel/hematournamentui 1.0.96 → 1.0.98

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.
@@ -29561,7 +29561,7 @@ function QR(n, e, t, r, i, o) {
29561
29561
  class: ""
29562
29562
  }),
29563
29563
  M(a, {
29564
- text: "click start pools when ready to start event",
29564
+ text: "click 'start checkin' to begin fencer checkin and pool finalization",
29565
29565
  size: "xs",
29566
29566
  color: "primaryHighlight"
29567
29567
  })
@@ -29585,7 +29585,7 @@ function QR(n, e, t, r, i, o) {
29585
29585
  class: ""
29586
29586
  }),
29587
29587
  M(a, {
29588
- text: "only fencers that are present will show",
29588
+ text: "Only present fencers will show. Make any/all final changes. Click 'Go Live' to start pools.",
29589
29589
  size: "xs",
29590
29590
  color: "primaryHighlight"
29591
29591
  })
@@ -29932,8 +29932,10 @@ const zR = /* @__PURE__ */ ke(DR, [["render", JR]]), KR = {
29932
29932
  this.$emit("goLive:pool");
29933
29933
  },
29934
29934
  getDirectorName(n) {
29935
- const e = n.find((t) => t.Role === "Director");
29936
- return e ? e.Person.DisplayName : "Unassigned";
29935
+ if (!Array.isArray(n))
29936
+ return "Unassigned";
29937
+ const e = n.find((t) => t.Role === "Director" && t.Person);
29938
+ return e && e.Person ? e.Person.DisplayName : "Unassigned";
29937
29939
  },
29938
29940
  swapFencers({ draggedPerson: n }) {
29939
29941
  this.$emit("update:swapFencers", { draggedPerson: n });