mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 23:33:31 +00:00
timeout of 200 ms before going back after share
This commit is contained in:
@@ -41,7 +41,9 @@ export class ShareComponent extends BaseShareComponent {
|
||||
async submit(): Promise<boolean> {
|
||||
const success = await super.submit();
|
||||
if (success) {
|
||||
this.location.back();
|
||||
window.setTimeout(() => {
|
||||
this.location.back();
|
||||
}, 200);
|
||||
}
|
||||
return success;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user