diff --git a/src/App/Pages/Vault/CipherDetailsPage.xaml b/src/App/Pages/Vault/CipherDetailsPage.xaml
index 609af3f77..14ebbde9c 100644
--- a/src/App/Pages/Vault/CipherDetailsPage.xaml
+++ b/src/App/Pages/Vault/CipherDetailsPage.xaml
@@ -532,7 +532,7 @@
+ ColumnDefinitions="*,Auto,Auto">
@@ -545,18 +545,26 @@
Text="{Binding Source={x:Static core:BitwardenIcons.ShareSquare}}"
Command="{Binding LaunchUriCommand}"
CommandParameter="{Binding Cipher.Fido2Key}"
- Grid.Row="0"
Grid.Column="1"
Grid.RowSpan="2"
VerticalOptions="End"
IsVisible="{Binding Cipher.Fido2Key.CanLaunch, Mode=OneWay}"
AutomationProperties.IsInAccessibleTree="True"
AutomationProperties.Name="{u:I18n Launch}" />
+
+ Grid.ColumnSpan="3" />
diff --git a/src/App/Pages/Vault/CipherDetailsPageViewModel.cs b/src/App/Pages/Vault/CipherDetailsPageViewModel.cs
index 169c3cd71..d58143e23 100644
--- a/src/App/Pages/Vault/CipherDetailsPageViewModel.cs
+++ b/src/App/Pages/Vault/CipherDetailsPageViewModel.cs
@@ -648,6 +648,11 @@ namespace Bit.App.Pages
text = Cipher.Card.Code;
name = AppResources.SecurityCode;
}
+ else if (id == "Fido2KeyApplication")
+ {
+ text = Cipher.Fido2Key?.LaunchUri;
+ name = AppResources.Application;
+ }
if (text != null)
{
diff --git a/src/App/Resources/AppResources.Designer.cs b/src/App/Resources/AppResources.Designer.cs
index 8cc3adc3d..df4400de0 100644
--- a/src/App/Resources/AppResources.Designer.cs
+++ b/src/App/Resources/AppResources.Designer.cs
@@ -1561,6 +1561,15 @@ namespace Bit.App.Resources {
}
}
+ ///
+ /// Looks up a localized string similar to Copy application.
+ ///
+ public static string CopyApplication {
+ get {
+ return ResourceManager.GetString("CopyApplication", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Copy link.
///
diff --git a/src/App/Resources/AppResources.resx b/src/App/Resources/AppResources.resx
index 698f834be..a9c68e2bb 100644
--- a/src/App/Resources/AppResources.resx
+++ b/src/App/Resources/AppResources.resx
@@ -2653,4 +2653,7 @@ Do you want to switch to this account?
The passkey will not be copied to the cloned item. Do you want to continue cloning this item?
+
+ Copy application
+