1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-28 03:57:43 +02: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:
Kyle Spearrin 2017-05-03 09:53:40 -04:00
parent d39211310d
commit e4f7436dfb

View File

@ -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();