fix(tracker): code style
This commit is contained in:
parent
c913e4e7f6
commit
3b8a2c19ef
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ export default function (app: App, opts: Partial<Options>): void {
|
||||||
} else if (
|
} else if (
|
||||||
hasOpenreplayAttribute(node, 'obscured') ||
|
hasOpenreplayAttribute(node, 'obscured') ||
|
||||||
(inputMode === InputMode.Plain &&
|
(inputMode === InputMode.Plain &&
|
||||||
((options.obscureInputNumbers && /\d\d\d\d/.test(value) && node.type !== 'date') ||
|
((options.obscureInputNumbers && node.type !== 'date' && /\d\d\d\d/.test(value)) ||
|
||||||
(options.obscureInputDates && node.type === 'date') ||
|
(options.obscureInputDates && node.type === 'date') ||
|
||||||
(options.obscureInputEmails &&
|
(options.obscureInputEmails &&
|
||||||
(node.type === 'email' || !!~value.indexOf('@')))))
|
(node.type === 'email' || !!~value.indexOf('@')))))
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue