Replace 'Primary' text with star symbol in display dropdown
Some checks failed
Validate / validate (push) Failing after 8s

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-02-09 19:13:30 +03:00
parent 5ce4dba925
commit 62a809f28f

View File

@@ -2628,7 +2628,7 @@ async function loadDisplaysForTest() {
option.value = display.index;
option.textContent = `Display ${display.index} (${display.width}x${display.height})`;
if (display.is_primary) {
option.textContent += ' - Primary';
option.textContent += ' ';
}
select.appendChild(option);
});