mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 09:13:33 +00:00
Pass vault state (locked/unlocked) to notificationBar
This commit is contained in:
@@ -444,10 +444,10 @@ document.addEventListener('DOMContentLoaded', event => {
|
||||
barPage = barPage + '?success=' + typeData.text;
|
||||
break;
|
||||
case 'add':
|
||||
barPage = barPage + '?add=1';
|
||||
barPage = barPage + '?add=1&isVaultLocked=' + typeData.isVaultLocked;
|
||||
break;
|
||||
case 'change':
|
||||
barPage = barPage + '?change=1';
|
||||
barPage = barPage + '?change=1&isVaultLocked=' + typeData.isVaultLocked;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user