From 023263963fb7a9532d1da41fec18392fea73c98f Mon Sep 17 00:00:00 2001 From: Seth Ladygo Date: Mon, 20 May 2019 05:50:23 -0700 Subject: [PATCH] require email for each catalog (for now) --- cateditor/src/components/CatalogInfo.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cateditor/src/components/CatalogInfo.vue b/cateditor/src/components/CatalogInfo.vue index 863f420..05964e8 100644 --- a/cateditor/src/components/CatalogInfo.vue +++ b/cateditor/src/components/CatalogInfo.vue @@ -96,10 +96,10 @@ export default { return !!value || 'Required' }, emailRules: value => { - if (!lazyUser && !value) { + /*if (!lazyUser && !value) { // signed-up user doesn't need email return true - } + }*/ if (!value) { return 'Required' } else {