From 2fcbe4a3c14c9cc47051e0b603b1a49202be9dc2 Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 10 Sep 2019 15:31:00 -0400 Subject: [PATCH] fix: hide create account link for non-local strategies --- client/components/login.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/login.vue b/client/components/login.vue index 915304d7..1c3b26e9 100644 --- a/client/components/login.vue +++ b/client/components/login.vue @@ -161,7 +161,7 @@ ) v-avatar.mr-3(tile, :class='strategy.color', size='24', v-html='strategy.icon') span(style='text-transform: none;') {{ strategy.title }} - template(v-if='screen === "login" && selectedStrategy.selfRegistration') + template(v-if='screen === "login" && selectedStrategy.key === `local` && selectedStrategy.selfRegistration') v-divider v-card-actions.py-3(:class='isSocialShown ? "" : "grey lighten-4"') v-spacer