fix types for $ conflicting between jQuery and webdriverIO

pull/1287/head
Audric Ackermann 5 years ago
parent 6cffb3c31f
commit c90e696da3
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -145,7 +145,7 @@ export class SessionSeedModal extends React.Component<Props, State> {
private confirmPassword() {
const passwordHash = this.state.passwordHash;
const passwordValue = ($('#seed-input-password') as any).val();
const passwordValue = jQuery('#seed-input-password').val();
const isPasswordValid = window.passwordUtil.matchesHash(
passwordValue,
passwordHash

@ -198,7 +198,7 @@ export class SettingsView extends React.Component<SettingsViewProps, State> {
}
public async validatePasswordLock() {
const enteredPassword = String(($('#password-lock-input') as any).val());
const enteredPassword = String(jQuery('#password-lock-input').val());
if (!enteredPassword) {
this.setState({
@ -265,9 +265,9 @@ export class SettingsView extends React.Component<SettingsViewProps, State> {
}
public setOptionsSetting(settingID: string) {
const selectedValue = ($(
const selectedValue = jQuery(
`#${settingID} .session-radio input:checked`
) as any).val();
).val();
window.setSettingValue(settingID, selectedValue);
}

Loading…
Cancel
Save