mirror of
https://github.com/bitwarden/android.git
synced 2024-12-18 15:21:53 +03:00
do not animate autofill on mobile
- Animate seems to now cause a JS error when autofilling on iOS, which stops the password from autofilling. Turn the option off.
This commit is contained in:
parent
d39211310d
commit
e4f7436dfb
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ namespace Bit.iOS.Extension.Models
|
|||
[JsonProperty(PropertyName = "properties")]
|
||||
public object Properties { get; set; } = new object();
|
||||
[JsonProperty(PropertyName = "options")]
|
||||
public object Options { get; set; } = new object();
|
||||
public object Options { get; set; } = new { animate = false };
|
||||
[JsonProperty(PropertyName = "metadata")]
|
||||
public object MetaData { get; set; } = new object();
|
||||
|
||||
|
|
Loading…
Reference in a new issue