From 52335265cf195109494fb2378e891176c9f3b509 Mon Sep 17 00:00:00 2001 From: Seth Ladygo Date: Tue, 21 May 2019 16:23:12 -0700 Subject: [PATCH] don't require notification email for regular users --- 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 05964e8..863f420 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 {