Simplify option picker announcements to value only

This commit is contained in:
Jage9
2026-02-20 17:58:15 -05:00
parent c6eac88e85
commit 6ba5a12d66
2 changed files with 2 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
// Maintainer-controlled web client version. // Maintainer-controlled web client version.
// Format: YYYY.MM.DD Rn (example: 2026.02.20 R2) // Format: YYYY.MM.DD Rn (example: 2026.02.20 R2)
window.CHGRID_WEB_VERSION = "2026.02.20 R64"; window.CHGRID_WEB_VERSION = "2026.02.20 R65";

View File

@@ -1751,7 +1751,7 @@ function handleItemPropertyOptionSelectModeInput(code: string): void {
code === 'ArrowDown' code === 'ArrowDown'
? (state.itemPropertyOptionIndex + 1) % state.itemPropertyOptionValues.length ? (state.itemPropertyOptionIndex + 1) % state.itemPropertyOptionValues.length
: (state.itemPropertyOptionIndex - 1 + state.itemPropertyOptionValues.length) % state.itemPropertyOptionValues.length; : (state.itemPropertyOptionIndex - 1 + state.itemPropertyOptionValues.length) % state.itemPropertyOptionValues.length;
updateStatus(`${propertyKey}: ${state.itemPropertyOptionValues[state.itemPropertyOptionIndex]}`); updateStatus(state.itemPropertyOptionValues[state.itemPropertyOptionIndex]);
audio.sfxUiBlip(); audio.sfxUiBlip();
return; return;
} }