mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00: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:
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user