Skip to content

Commit

Permalink
fix compat when no dependencies object
Browse files Browse the repository at this point in the history
  • Loading branch information
hschoenenberger committed Feb 18, 2021
1 parent bd8a4d8 commit fdb0636
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/PsAccounts.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
@enabled="enablePsAccounts()"
/>
<template v-else>
<event-bus-not-installed
v-if="!validatedContext.dependencies.ps_eventbus.isInstalled"
<EventBusNotInstalled
v-if="undefined !== validatedContext.dependencies && !validatedContext.dependencies.ps_eventbus.isInstalled"
:install-loading="installLoading"
@installEventBus="installEventBus"
/>
Expand Down

0 comments on commit fdb0636

Please sign in to comment.