Skip to content
Merged
Changes from 2 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
4 changes: 3 additions & 1 deletion apps/central/src/components/async-route.vue
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,10 @@ export default {
this.component = markRaw(m.default);
}
})
.catch(() => {
.catch(err => {
if (!canceled) {
console.error('async-route', 'loadError:', err); // eslint-disable-line no-console
Comment thread
alxndrsn marked this conversation as resolved.
Outdated

// It would be ideal to show a more informative error message.
// However, the error seems to provide limited information. For
// example, if there is a 404 because Frontend was rebuilt, the
Expand Down
Loading