1
0
Fork 0
mirror of synced 2024-06-13 16:05:06 +12:00

Merge pull request #13283 from Budibase/fix/automation-error-crash

Fix hard crash when an automation error exists
This commit is contained in:
Andrew Kingston 2024-03-19 09:31:46 +00:00 committed by GitHub
commit f25bf60d85
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -85,7 +85,7 @@
}
const automationErrorMessage = appId => {
const app = enrichedApps.find(app => app.devId === appId)
const app = $enrichedApps.find(app => app.devId === appId)
const errors = automationErrors[appId]
return `${app.name} - Automation error (${errorCount(errors)})`
}