From ba348b88aec44b2734243146b59f172ae8b952cc Mon Sep 17 00:00:00 2001 From: Aylur Date: Tue, 24 Oct 2023 15:34:09 +0200 Subject: [PATCH] fix: example anchor --- example/notification-center/config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/notification-center/config.js b/example/notification-center/config.js index 04817b8..f3138d9 100644 --- a/example/notification-center/config.js +++ b/example/notification-center/config.js @@ -17,7 +17,7 @@ const Header = () => Widget.Box({ const NotificationCenter = () => Widget.Window({ name: 'notification-center', - anchor: 'right top bottom', + anchor: ['right', 'top', 'bottom'], popup: true, focusable: true, child: Widget.Box({ @@ -40,7 +40,7 @@ const NotificationCenter = () => Widget.Window({ const NotificationsPopupWindow = () => Widget.Window({ name: 'popup-window', - anchor: 'top', + anchor: ['top'], child: PopupList(), });