поправлены еще раз удаления

This commit is contained in:
2026-08-20 15:37:10 +03:00
parent cd9476d167
commit 7d4f25991c
10 changed files with 115 additions and 18 deletions

View File

@@ -9574,7 +9574,9 @@ function renderStandaloneHockeyPlayByPlayWindow() {
let selectedPeriod = String(state.formValues[stateKey] || "all");
if (!segments.includes(selectedPeriod)) selectedPeriod = "all";
rememberUiNavigationState("hockey_play_by_play", "period", selectedPeriod, hockeyStatisticsSegmentLabel(selectedPeriod, language), { emit: false });
const collapsed = Boolean(state.formValues[collapsedKey]);
const collapsed = Object.prototype.hasOwnProperty.call(state.formValues, collapsedKey)
? Boolean(state.formValues[collapsedKey])
: true;
const labels = hockeyEventCategoryLabels(language);
const items = sourceItems
.filter((item) => selectedPeriod === "all" || String(item?.period || "") === selectedPeriod)

View File

@@ -15,6 +15,7 @@
editorUrl: "__UI_BUILDER_EDITOR__",
runtimeUrl: "__UI_BUILDER_RUNTIME__",
editorHotkey: "__UI_BUILDER_EDITOR_HOTKEY__",
buildVersion: "__UI_BUILDER_BUILD_VERSION__",
mode: "__UI_BUILDER_MODE__"
};
</script>
@@ -156,7 +157,7 @@
<header class="runtime-topbar">
<div>
<div class="eyebrow">RUNTIME INTERFACE</div>
<div class="runtime-title-line"><strong id="runtimeTitle">Интерфейс</strong><small class="runtime-build-badge">BUILD 2026.08.19.28</small></div>
<div class="runtime-title-line"><strong id="runtimeTitle">Интерфейс</strong><small class="runtime-build-badge">BUILD __UI_BUILDER_BUILD_VERSION__</small></div>
</div>
<div id="runtimeTabs" class="runtime-tabs"></div>
<div class="runtime-actions">

View File

@@ -15,6 +15,7 @@
editorUrl: "__UI_BUILDER_EDITOR__",
runtimeUrl: "__UI_BUILDER_RUNTIME__",
editorHotkey: "__UI_BUILDER_EDITOR_HOTKEY__",
buildVersion: "__UI_BUILDER_BUILD_VERSION__",
mode: "runtime"
};
</script>
@@ -24,7 +25,7 @@
<header class="runtime-topbar">
<div>
<div class="eyebrow">RUNTIME INTERFACE</div>
<div class="runtime-title-line"><strong id="runtimeTitle">Интерфейс</strong><small class="runtime-build-badge">BUILD 2026.08.19.28</small></div>
<div class="runtime-title-line"><strong id="runtimeTitle">Интерфейс</strong><small class="runtime-build-badge">BUILD __UI_BUILDER_BUILD_VERSION__</small></div>
</div>
<div id="runtimeTabs" class="runtime-tabs"></div>
<div class="runtime-actions">