mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2024-11-25 15:05:46 +01:00
Minor fixes
This commit is contained in:
parent
9bec77a2db
commit
288518cd78
@ -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;
|
||||
}
|
||||
}
|
||||
|
@ -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: {
|
||||
|
Loading…
Reference in New Issue
Block a user