Skip to content
Snippets Groups Projects
Commit ed258952 authored by Farhanah Sheets's avatar Farhanah Sheets
Browse files

Update wording for clarity and bug fix for API expectations

parent 225b0cca
No related branches found
No related tags found
No related merge requests found
......@@ -34,10 +34,10 @@ function LoggedInUser({ userInformation, setErrorState, zendeskApiHost, submitFo
</div>);
}
let subjectElement;
subjectElement = (<div>
<label htmlFor="subject">{gettext('Subject')}</label>
<select className="form-control select-subject" id="subject">
let topicElement;
topicElement = (<div>
<label htmlFor="topic">{gettext('Topic')}</label>
<select className="form-control select-subject" id="topic">
<option value="">--------</option>
<option value="Account Settings">{gettext('Account Settings')}</option>
<option value="Billing/Payment Options">{gettext('Billing/Payment Options')}</option>
......@@ -83,7 +83,7 @@ function LoggedInUser({ userInformation, setErrorState, zendeskApiHost, submitFo
<div className="row">
<div className="col-sm-12">
<div className="form-group">
{subjectElement}
{topicElement}
</div>
</div>
</div>
......
......@@ -37,7 +37,7 @@ class RenderForm extends React.Component {
$userInfo = $('.user-info'),
request = new XMLHttpRequest(),
$course = $('#course'),
$subject = $('#subject'),
$topic = $('#topic'),
data = {
comment: {
body: $('#message').val(),
......@@ -67,16 +67,16 @@ class RenderForm extends React.Component {
value: course,
}];
let subject;
subject = $subject.find(':selected').val();
if (!subject) {
subject = $subject.val();
let topic;
topic = $topic.find(':selected').val();
if (!topic) {
topic = $topic.val();
}
if (!subject) {
$('#subject').closest('.form-group').addClass('has-error');
errors.push(gettext('Select a subject for your support request.'));
if (!topic) {
$('#topic').closest('.form-group').addClass('has-error');
errors.push(gettext('Select a topic for your support request.'));
}
data.subject = subject;
data.subject = topic; // Zendesk API requires 'subject'
if (this.validateData(data, errors)) {
request.open('POST', url, true);
......
......@@ -28,7 +28,7 @@ function Success({ platformName, homepageUrl, dashboardUrl, isLoggedIn }) {
<div className="row">
<div className="col-sm-12">
<p>{gettext('Thank you for submitting a request!')}</p>
<p>{gettext('Thank you for submitting a request! We appreciate your patience while we work to review your request.')}</p>
</div>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment