1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-06 11:43:51 +00:00

fix(notification-processing): [PM-19877] System Notification Implementation - Fixed bug with not showing body of message.

This commit is contained in:
Patrick Pimentel
2025-07-24 10:17:20 -04:00
parent 43ce345f8a
commit 8e98aead30

View File

@@ -28,7 +28,7 @@ export class BrowserSystemNotificationService implements SystemNotificationsServ
case DeviceType.ChromeExtension:
chrome.notifications.create(createInfo.id, {
iconUrl: "https://avatars.githubusercontent.com/u/15990069?s=200",
message: createInfo.title,
message: createInfo.body,
type: "basic",
title: createInfo.title,
buttons: createInfo.buttons.map((value) => {