fix: example anchor

This commit is contained in:
Aylur
2023-10-24 15:34:09 +02:00
parent da525054e5
commit ba348b88ae
+2 -2
View File
@@ -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(),
});