@dcrackel/hematournamentui 1.0.603 → 1.0.604

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.
@@ -1043,7 +1043,6 @@ function tC(n, e, t, r, o, i) {
1043
1043
  text: t.title,
1044
1044
  color: "primary",
1045
1045
  size: "",
1046
- weight: "simi-bold",
1047
1046
  class: "text-lg mt-1 md:mt-0 md:text-2xl"
1048
1047
  }, null, 8, ["text"])
1049
1048
  ]),
@@ -9509,7 +9508,7 @@ function ZE(n, e, t, r, o, i) {
9509
9508
  class: "mb-1"
9510
9509
  }, null, 8, ["invalid"]),
9511
9510
  h(u, {
9512
- label: "test",
9511
+ label: "",
9513
9512
  items: t.weapons,
9514
9513
  "selected-item": i.selectedWeapon,
9515
9514
  alignEnd: !1,
@@ -11760,23 +11759,23 @@ const kw = /* @__PURE__ */ oe(ww, [["render", Dw]]), Sw = {
11760
11759
  methods: {
11761
11760
  applyFilters() {
11762
11761
  let n = [...this.items];
11763
- n = this.applySearchFilter(n), this.component === "TournamentAdminCard" && (n = this.filterByTimeFrame(n)), n = this.applySorting(n), this.filteredItems = n;
11762
+ n = this.applySearchFilter(n), this.component === "TournamentAdminCard" && (n = this.filterByTimeFrame(n)), n = this.applySorting(n), this.filteredItems = n, console.log(this.filteredItems);
11764
11763
  },
11765
11764
  applySearchFilter(n) {
11766
11765
  if (!this.filterOn.trim()) return n;
11767
11766
  const e = this.filterOn.toLowerCase();
11768
11767
  return n.filter((t) => {
11769
- var o, i, a, A;
11768
+ var o, i, a;
11770
11769
  let r;
11771
11770
  switch (this.component) {
11772
11771
  case "TournamentAdminCard":
11773
11772
  r = ((o = t.Name) == null ? void 0 : o.toLowerCase()) ?? "";
11774
11773
  break;
11775
11774
  case "FencerFinalResultCard":
11776
- r = ((a = (i = t.Person) == null ? void 0 : i.DisplayName) == null ? void 0 : a.toLowerCase()) ?? "";
11775
+ console.log(`item: ${JSON.stringify(t)}`), r = ((i = t.DisplayName) == null ? void 0 : i.toLowerCase()) ?? "";
11777
11776
  break;
11778
11777
  case "ClubCard":
11779
- r = ((A = t.Name) == null ? void 0 : A.toLowerCase()) ?? "";
11778
+ r = ((a = t.Name) == null ? void 0 : a.toLowerCase()) ?? "";
11780
11779
  break;
11781
11780
  default:
11782
11781
  r = "";