Replace 'Primary' text with star symbol in display dropdown
Some checks failed
Validate / validate (push) Failing after 8s
Some checks failed
Validate / validate (push) Failing after 8s
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -2628,7 +2628,7 @@ async function loadDisplaysForTest() {
|
|||||||
option.value = display.index;
|
option.value = display.index;
|
||||||
option.textContent = `Display ${display.index} (${display.width}x${display.height})`;
|
option.textContent = `Display ${display.index} (${display.width}x${display.height})`;
|
||||||
if (display.is_primary) {
|
if (display.is_primary) {
|
||||||
option.textContent += ' - Primary';
|
option.textContent += ' ★';
|
||||||
}
|
}
|
||||||
select.appendChild(option);
|
select.appendChild(option);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user