1
0
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:
Daniel James Smith
2021-09-30 16:09:42 +02:00
parent 210e0801ff
commit 686c7fbfff
3 changed files with 10 additions and 2 deletions

View File

@@ -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;