Skip to content

Commit c40d3a5

Browse files
saltcodivasilov
andauthored
Chore/cron sentry issue (supabase#30800)
* Fix sentry error * Update apps/studio/components/interfaces/Integrations/CronJobs/CronJobsTab.tsx Co-authored-by: Ivan Vasilov <[email protected]> --------- Co-authored-by: Ivan Vasilov <[email protected]>
1 parent 71b85ea commit c40d3a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/studio/components/interfaces/Integrations/CronJobs/CronJobsTab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export const CronjobsTab = () => {
5656
</div>
5757
)
5858

59-
const filteredCronJobs = (cronJobs ?? []).filter((cj) => cj.jobname.includes(searchQuery))
59+
const filteredCronJobs = (cronJobs ?? []).filter((cj) => cj?.jobname?.includes(searchQuery || ''))
6060

6161
return (
6262
<>

0 commit comments

Comments
 (0)