From 288518cd7897f07e42fcf9adb3f5631822567b7a Mon Sep 17 00:00:00 2001 From: James Rowe Date: Thu, 24 Oct 2019 09:15:10 -0600 Subject: [PATCH] Minor fixes --- ui/src/main.js | 4 ++-- ui/src/views/AuthenticationView.vue | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/src/main.js b/ui/src/main.js index 3bef367..fc9dca2 100644 --- a/ui/src/main.js +++ b/ui/src/main.js @@ -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; } } diff --git a/ui/src/views/AuthenticationView.vue b/ui/src/views/AuthenticationView.vue index df7ea2e..1735e4d 100644 --- a/ui/src/views/AuthenticationView.vue +++ b/ui/src/views/AuthenticationView.vue @@ -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: {