mirror of
https://github.com/bitwarden/android.git
synced 2024-11-22 17:36:01 +03:00
BIT-2046 Fix passkey creation date display (#1161)
This commit is contained in:
parent
232ffe93ca
commit
0f581e6e21
2 changed files with 2 additions and 2 deletions
|
@ -104,7 +104,7 @@ fun VaultItemLoginContent(
|
|||
item {
|
||||
Spacer(modifier = Modifier.height(8.dp))
|
||||
Fido2CredentialField(
|
||||
creationDate = creationDate.toString(),
|
||||
creationDate = creationDate.invoke(),
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.padding(horizontal = 16.dp),
|
||||
|
|
|
@ -1346,7 +1346,7 @@ class VaultItemScreenTest : BaseComposeTest() {
|
|||
}
|
||||
|
||||
composeTestRule
|
||||
.onNodeWithText(text = DEFAULT_PASSKEY.toString(), substring = true)
|
||||
.onNodeWithText(text = "Created 3/13/24, 3:56 PM")
|
||||
.assertIsDisplayed()
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue