🐛 Fixed deleting members to prompt cancellation (#1869)

closes https://github.com/TryGhost/Team/issues/546

Since https://github.com/TryGhost/Ghost/commit/26ee6483 and
https://github.com/TryGhost/Admin/commit/fbd42ef3 member
subscriptions have not been on the `stripe` property.

This meant that all members were considered to not have subscriptions,
and so the modal would not display to option to cancel subscriptions.
This commit is contained in:
Fabien 'egg' O'Carroll 2021-03-18 14:45:29 +00:00 committed by GitHub
parent eec670a859
commit 6d324e31f1

View File

@ -18,7 +18,7 @@ export default ModalComponent.extend({
cancelSubscriptions: reads('shouldCancelSubscriptions'),
hasActiveStripeSubscriptions: computed('member', function () {
let subscriptions = this.member.get('stripe');
let subscriptions = this.member.get('subscriptions');
if (!subscriptions || subscriptions.length === 0) {
return false;