From 6cd0530f0cc86e4fbc82451c1db06fb3d1c4017f Mon Sep 17 00:00:00 2001 From: Aylur Date: Mon, 9 Oct 2023 19:32:08 +0200 Subject: [PATCH] fix: notification example --- example/notification-center/notification.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/notification-center/notification.js b/example/notification-center/notification.js index 545df08..0082cf7 100644 --- a/example/notification-center/notification.js +++ b/example/notification-center/notification.js @@ -108,7 +108,7 @@ export const Notification = n => Widget.EventBox({ }), Widget.Box({ className: 'actions', - children: n.actions.map(({ id, label }) => Button({ + children: n.actions.map(({ id, label }) => Widget.Button({ className: 'action-button', onClicked: () => n.invoke(id), hexpand: true,