diff --git a/models/notification/src/index.ts b/models/notification/src/index.ts index 51246d79ed..1dfb3e2308 100644 --- a/models/notification/src/index.ts +++ b/models/notification/src/index.ts @@ -235,8 +235,7 @@ export function createModel (builder: Builder): void { label: notification.string.Inbox, icon: notification.icon.Notifications, alias: notificationId, - position: 'bottom', - hidden: false, + hidden: true, component: notification.component.Inbox }, notification.app.Notification diff --git a/plugins/workbench-resources/src/components/AppItem.svelte b/plugins/workbench-resources/src/components/AppItem.svelte index bc05a3b550..31ee3cffe4 100644 --- a/plugins/workbench-resources/src/components/AppItem.svelte +++ b/plugins/workbench-resources/src/components/AppItem.svelte @@ -19,20 +19,12 @@ export let label: IntlString export let icon: Asset | AnySvelteComponent - export let action: () => Promise - export let selected: boolean + export let selected: boolean = false export let mini: boolean = false - export let notify: boolean + export let notify: boolean = false -