Skip to content

Commit

Permalink
hotfix/wp-375-extension-entity-name-add-button (#242)
Browse files Browse the repository at this point in the history
* Entity name missing from extension form add buttons

* Add payor code label to dropdown

* Changed button element type link to a element on error page

* Remove console.log from extension

---------

Co-authored-by: edmondsgarrett <[email protected]>
  • Loading branch information
sophia-massie and edmondsgarrett authored Nov 8, 2023
1 parent 1bfb7a8 commit 7b64d6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h1>Request to Submit Extension</h1>
<p class="c-message c-message--error">
An error occurred during your extension request submission. For help, <a href="/workbench/dashboard">submit a ticket</a>.
</p>
<button class="c-button c-button--primary" href="/submissions/extension-request/" type="link">Go Back to Extensions</button>
<a class="c-button c-button--primary" href="/submissions/extension-request/">Go Back to Extensions</a>
</div>

{% endblock %}
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ <h4>Acknowledgment of Terms</h4>
<div class="field-errors" style="display: none"></div>
<select name='business-name_${extensions}' required='required' class="choicefield" id='business-name_${extensions}'>
{% for submitter in submitters %}
<option class="dropdown-text" value={{submitter.submitter_id}}>{{submitter.org_name}} -
<option class="dropdown-text" value={{submitter.submitter_id}}>{{submitter.entity_name}} - Payor Code:
{{submitter.payor_code}}</option>
{% endfor %}
</select>
Expand Down Expand Up @@ -379,7 +379,6 @@ <h6>Submission Dates</h6>
$('[id^="applicable-data-period"]').change(function() {
let appDataValue = $(this).val();
appDataValue = formatAppPeriod(appDataValue)
console.log(appDataValue)
// Gets applicable data period
let extensionsNum = $(this).attr('id').slice(-1);
let expectedDate = $(`current-expected-date_${extensions}`).val();
Expand Down

0 comments on commit 7b64d6a

Please sign in to comment.