From 84c8446c758c0fc79dba5e47549a2537d8c10798 Mon Sep 17 00:00:00 2001 From: rahularya Date: Tue, 7 Jul 2020 03:19:06 -0700 Subject: [PATCH] fix: hotfix to unbreak the request_form --- oh_queue/static/js/components/request_form.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oh_queue/static/js/components/request_form.js b/oh_queue/static/js/components/request_form.js index c6f477a..5b74fb0 100644 --- a/oh_queue/static/js/components/request_form.js +++ b/oh_queue/static/js/components/request_form.js @@ -105,7 +105,7 @@ let RequestForm = (props) => { disabled={disabled && !appointments}/> - {showOnlineInput && (party_enabled || JSON.parse(state.config.students_set_online_link) || JSON.parse(state.config.students_set_online_doc)) && ( + {(showOnlineInput || party_enabled) && (party_enabled || JSON.parse(state.config.students_set_online_link) || JSON.parse(state.config.students_set_online_doc)) && ( {(party_enabled || JSON.parse(state.config.students_set_online_link)) && (
@@ -120,7 +120,7 @@ let RequestForm = (props) => {