Openstatus www.openstatus.dev

fix: missing tags on monitor creation (#863)

authored by

Maximilian Kaske and committed by
GitHub
7e87ccb0 18ce66de

+2
+2
apps/web/src/app/app/[workspaceSlug]/(dashboard)/monitors/new/page.tsx
··· 17 17 const notifications = 18 18 await api.notification.getNotificationsByWorkspace.query(); 19 19 const isLimitReached = await api.monitor.isMonitorLimitReached.query(); 20 + const tags = await api.monitorTag.getMonitorTagsByWorkspace.query(); 20 21 21 22 const pages = await api.page.getPagesByWorkspace.query(); 22 23 ··· 30 31 defaultSection={search.success ? search.data.section : undefined} 31 32 notifications={notifications} 32 33 pages={pages} 34 + tags={tags} 33 35 nextUrl="./" // back to the overview page 34 36 /> 35 37 );