This commit is contained in:
Raymond Zhao 2023-06-19 14:26:12 -07:00 коммит произвёл GitHub
Родитель ea97852a3b
Коммит 5eeacc59a7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -6,7 +6,7 @@
import { BrowserFeatures } from 'vs/base/browser/canIUse';
import * as DOM from 'vs/base/browser/dom';
import { IMouseEvent } from 'vs/base/browser/mouseEvent';
import { alert as ariaAlert } from 'vs/base/browser/ui/aria/aria';
import * as aria from 'vs/base/browser/ui/aria/aria';
import { Button } from 'vs/base/browser/ui/button/button';
import { Toggle, unthemedToggleStyles } from 'vs/base/browser/ui/toggle/toggle';
import { IInputOptions, InputBox } from 'vs/base/browser/ui/inputbox/inputBox';
@ -2074,7 +2074,7 @@ function renderValidations(dataElement: SettingsTreeSettingElement, template: IS
template.validationErrorMessageElement.innerText = errMsg;
const validationError = localize('validationError', "Validation Error.");
template.inputBox.inputElement.parentElement!.setAttribute('aria-label', [validationError, errMsg].join(' '));
if (!calledOnStartup) { ariaAlert(validationError + ' ' + errMsg); }
if (!calledOnStartup) { aria.status(validationError + ' ' + errMsg); }
return true;
} else {
template.inputBox.inputElement.parentElement!.removeAttribute('aria-label');
@ -2101,7 +2101,7 @@ function renderArrayValidations(
template.validationErrorMessageElement.innerText = errMsg;
const validationError = localize('validationError', "Validation Error.");
template.containerElement.setAttribute('aria-label', [dataElement.setting.key, validationError, errMsg].join(' '));
if (!calledOnStartup) { ariaAlert(validationError + ' ' + errMsg); }
if (!calledOnStartup) { aria.status(validationError + ' ' + errMsg); }
return true;
} else {
template.containerElement.setAttribute('aria-label', dataElement.setting.key);