Skip to content

Commit

Permalink
🚨 Hotfix: Item target not honored (#581)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lissy93 committed Apr 15, 2022
1 parent cc1b9c8 commit a784a2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mixins/ItemMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default {
return interval;
},
accumulatedTarget() {
return this.target || this.appConfig.defaultOpeningMethod || defaultOpeningMethod;
return this.item.target || this.appConfig.defaultOpeningMethod || defaultOpeningMethod;
},
/* Convert config target value, into HTML anchor target attribute */
anchorTarget() {
Expand Down

1 comment on commit a784a2f

@Lissy93
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also mentioned in #602

Please sign in to comment.