Minor fixes

This commit is contained in:
James Rowe 2019-10-24 09:15:10 -06:00
parent 9bec77a2db
commit 288518cd78
2 changed files with 3 additions and 3 deletions

View file

@ -132,8 +132,8 @@ var app = new Vue({
that.is_subscribed = true;
that.has_reward_tier = true;
} else {
that.is_linked = that.jwt_token.isPatreonAccountLinked;
that.is_subscribed = that.jwt_token.isPatreonSubscriptionActive;
that.is_linked = that.jwt_token.IsPatreonAccountLinked;
that.is_subscribed = that.jwt_token.IsPatreonSubscriptionActive;
that.has_reward_tier = that.jwt_token.releaseChannels.indexOf("early-release") > -1;
}
}

View file

@ -84,7 +84,7 @@ export default {
return this.verification_opened && this.$root.is_linked && !this.$root.is_subscribed;
},
tier_not_selected: function() {
return this.verification_opened && this.$root.is_subscribed && !this.$root.has_reward_tier;
return this.verification_opened && this.$root.is_linked && this.$root.is_subscribed && !this.$root.has_reward_tier;
}
},
methods: {