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.is_subscribed = true;
that.has_reward_tier = true; that.has_reward_tier = true;
} else { } else {
that.is_linked = that.jwt_token.isPatreonAccountLinked; that.is_linked = that.jwt_token.IsPatreonAccountLinked;
that.is_subscribed = that.jwt_token.isPatreonSubscriptionActive; that.is_subscribed = that.jwt_token.IsPatreonSubscriptionActive;
that.has_reward_tier = that.jwt_token.releaseChannels.indexOf("early-release") > -1; 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; return this.verification_opened && this.$root.is_linked && !this.$root.is_subscribed;
}, },
tier_not_selected: function() { 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: { methods: {