Skip to content

Commit

Permalink
Address some Sentry logging issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jolzee committed Nov 23, 2020
1 parent 84c2f24 commit b2d79ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ChatTeneoResponse.vue
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ export default {
let routerCheckList = null;
extensions.forEach(extension => {
if (String(extension.name).startsWith("displayRouterCheckList")) {
if (extension.name && String(extension.name).startsWith("displayRouterCheckList")) {
routerCheckList = extension.parameters;
}
});
Expand Down
1 change: 1 addition & 0 deletions src/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,7 @@ function storeSetup(vuetify) {
extensions.forEach(extension => {
if (
!getters.extensionIsInline(extension) &&
extension.name &&
!extension.name.startsWith("displayCollection")
) {
modalExtensions.push(extension);
Expand Down

0 comments on commit b2d79ba

Please sign in to comment.