From c0a4b7a55499c6e61f405adc33c27da3ab8e2f5d Mon Sep 17 00:00:00 2001 From: aarohinadkarni <68303030+aarohinadkarni@users.noreply.github.com> Date: Tue, 30 Jan 2024 13:11:01 -0500 Subject: [PATCH] [DUOS-2863] Add help text to Contact Us form (#2446) --- src/components/modals/SupportRequestModal.js | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/components/modals/SupportRequestModal.js b/src/components/modals/SupportRequestModal.js index 694eeccb5..f5823f273 100644 --- a/src/components/modals/SupportRequestModal.js +++ b/src/components/modals/SupportRequestModal.js @@ -1,5 +1,5 @@ import React, { Component } from 'react'; -import { div, form, input, label, textarea, hh, h, select, span, option, section, button, p } from 'react-hyperscript-helpers'; +import { div, form, input, label, textarea, hh, h, select, span, option, section, button, p, a } from 'react-hyperscript-helpers'; import { Support} from '../../libs/ajax'; import { Storage } from '../../libs/storage'; import { Notifications, isEmailAddress } from '../../libs/utils'; @@ -264,6 +264,20 @@ export const SupportRequestModal = hh( outline: '0', }, }, [ + div({className: 'default-color', style: { fontStyle: 'italic', fontSize: '13px' }}, [ + p(['Having issues accessing data you were already approved to use?', + div({style: { fontStyle: 'normal'}}, [ + 'Please contact the dataset\'s Data Custodian listed in the DUOS ', + a({ href: '/datalibrary' }, 'Data Library'),'.' + ])]) + ]), + div({className: 'default-color', style: { fontStyle: 'italic', fontSize: '13px' }}, [ + p(['Want to ask the data access committee(s) about your requests\' expected turnaround time?', + div({style: { fontStyle: 'normal'}}, [ + 'Please contact the dataset\'s Data Access Committee (DAC) listed in the DUOS ', + a({ href: '/datalibrary' }, 'Data Library'),'.' + ])]) + ]), form({ className: 'form-horizontal css-form', name: 'zendeskTicketForm',