mirror of
https://github.com/bitwarden/mobile.git
synced 2025-02-24 02:32:56 +01: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
@ -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 New Issue
Block a user