mirror of
https://github.com/bitwarden/android.git
synced 2025-02-18 13:00: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 {
|
item {
|
||||||
Spacer(modifier = Modifier.height(8.dp))
|
Spacer(modifier = Modifier.height(8.dp))
|
||||||
Fido2CredentialField(
|
Fido2CredentialField(
|
||||||
creationDate = creationDate.toString(),
|
creationDate = creationDate.invoke(),
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.padding(horizontal = 16.dp),
|
.padding(horizontal = 16.dp),
|
||||||
|
|
|
@ -1346,7 +1346,7 @@ class VaultItemScreenTest : BaseComposeTest() {
|
||||||
}
|
}
|
||||||
|
|
||||||
composeTestRule
|
composeTestRule
|
||||||
.onNodeWithText(text = DEFAULT_PASSKEY.toString(), substring = true)
|
.onNodeWithText(text = "Created 3/13/24, 3:56 PM")
|
||||||
.assertIsDisplayed()
|
.assertIsDisplayed()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue