mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +03:00
replace password copied
This commit is contained in:
parent
f7977c3435
commit
8b591a7f0c
1 changed files with 2 additions and 1 deletions
|
@ -255,7 +255,8 @@ namespace Bit.App.Pages
|
|||
public async Task CopyAsync()
|
||||
{
|
||||
await _platformUtilsService.CopyToClipboardAsync(Password);
|
||||
_platformUtilsService.ShowToast("success", null, AppResources.CopiedPassword);
|
||||
_platformUtilsService.ShowToast("success", null,
|
||||
string.Format(AppResources.ValueHasBeenCopied, AppResources.Password));
|
||||
}
|
||||
|
||||
private void LoadFromOptions()
|
||||
|
|
Loading…
Reference in a new issue