Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/routes/cron.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export default function CronPage() {
const s = row.original
return (
<div className="max-w-16 whitespace-normal break-words">
<span>{s.servers.join(",")}</span>
<span>{(s.servers || []).join(",")}</span>
</div>
)
},
Expand Down
2 changes: 1 addition & 1 deletion src/routes/notification-group.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default function NotificationGroupPage() {
const s = row.original
return (
<div className="max-w-48 whitespace-normal break-words">
<span>{s.notifications.join(",")}</span>
<span>{(s.notifications || []).join(",")}</span>
</div>
)
},
Expand Down
2 changes: 1 addition & 1 deletion src/routes/server-group.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default function ServerGroupPage() {
const s = row.original
return (
<div className="max-w-48 whitespace-normal break-words">
<span>{s.servers.join(",")}</span>
<span>{(s.servers || []).join(",")}</span>
</div>
)
},
Expand Down
Loading