@dcrackel/hematournamentui 1.0.563 → 1.0.564
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.
|
@@ -35252,9 +35252,8 @@ const Jp = /* @__PURE__ */ se(tL, [["render", rL]]), oL = {
|
|
|
35252
35252
|
determineCountingDirection() {
|
|
35253
35253
|
if (Array.isArray(this.eventRules)) {
|
|
35254
35254
|
const t = this.eventRules.find((e) => e.Rules.RuleName === "PoolScoreDirection");
|
|
35255
|
-
this.isCountingUp = t ? t.RuleValue === "true" : !0;
|
|
35255
|
+
this.isCountingUp = t ? t.RuleValue === "true" : !0, console.log(`isCountingUp: ${this.isCountingUp}`);
|
|
35256
35256
|
}
|
|
35257
|
-
Array.isArray(this.eventRules) || (this.isCountingUp = !0);
|
|
35258
35257
|
},
|
|
35259
35258
|
toggleTimer() {
|
|
35260
35259
|
this.timerRunning ? clearInterval(this.timerInterval) : this.timerInterval = setInterval(() => {
|