Skip to content

Commit

Permalink
Merge pull request #1807 from usdoj/release-8.1.0
Browse files Browse the repository at this point in the history
Release 8.1.0
  • Loading branch information
ameshkin authored Nov 9, 2023
2 parents 756f92f + 58a8dd4 commit f25c304
Show file tree
Hide file tree
Showing 22 changed files with 225 additions and 206 deletions.
4 changes: 2 additions & 2 deletions js/components/wizard_page_query.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function Query() {
onClick={() => {
setSubmitted(true);
actions.submitRequest({
query: query || '',
query: (query || '').trim(),
topic: selectedTopic,
});
}}
Expand Down Expand Up @@ -114,7 +114,7 @@ function Query() {
disabled={Boolean(selectedTopic)}
/>

{(query && query !== '' && !exceededMaxLengthQuery) ? submitButton : null}
{(query && query.trim() !== '' && !exceededMaxLengthQuery) ? submitButton : null}
</div>
</Constrain>
</PageTemplate>
Expand Down
4 changes: 2 additions & 2 deletions js/models/wizard_medical_records.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const medicalRecordsJourney = yesNoQuestion('q1', {
'Your own Indian Health Service participant records',
),
answer(
'literal:For other records, we recommend you contact your medical provider directly',
'literal:Other medical records',
summary('m50'),
'All other medical records',
),
Expand Down Expand Up @@ -70,7 +70,7 @@ const medicalRecordsJourney = yesNoQuestion('q1', {
'Indian Health Service participant records',
),
answer(
'literal:For other records, we recommend you contact the medical provider directly',
'literal:Other medical records',
summary('m51'),
'All other medical records',
),
Expand Down
22 changes: 21 additions & 1 deletion js/pages/foia_dataset_download.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function FoiaDatasetDownload() {
<div className="usa-grid">
<div className="usa-width-one-whole">
<h1>FOIA Data Set Downloads</h1>
<p>The following compressed files are complete archives of the FOIA Data sets for the years 2008 through 2019.</p>
<p>The following compressed files are complete archives of the agency FOIA data sets for the years 2008 through 2022 in .xml format.</p>
<ul>
<li><a href="/2022-FOIASetFull.zip">Download the full 2022 FOIA Data set</a> (.zip format)</li>
<li><a href="/2021-FOIASetFull.zip">Download the full 2021 FOIA Data set</a> (.zip format)</li>
Expand All @@ -26,6 +26,26 @@ function FoiaDatasetDownload() {
<li><a href="/2008-FOIASetFull.zip">Download the full 2008 FOIA Data set</a> (.zip format)</li>
</ul>
</div>
<div className="usa-width-one-whole pt5">
<p>The following compressed files are complete archives of governmentwide FOIA data sets for the years 2008 through 2022 in .csv format.</p>
<ul>
<li><a href="/downloads/all_agencies_csv_2022.zip">Download the full 2022 All Agency Data set</a> (.zip format)</li>
<li><a href="/downloads/all_agencies_csv_2021.zip">Download the full 2021 All Agency Data set</a> (.zip format)</li>
<li><a href="/downloads/all_agencies_csv_2020.zip">Download the full 2020 All Agency Data set</a> (.zip format)</li>
<li><a href="/downloads/all_agencies_csv_2019.zip">Download the full 2019 All Agency Data set</a> (.zip format)</li>
<li><a href="/downloads/all_agencies_csv_2018.zip">Download the full 2018 All Agency Data set</a> (.zip format)</li>
<li><a href="/downloads/all_agencies_csv_2017.zip">Download the full 2017 All Agency Data set</a> (.zip format)</li>
<li><a href="/downloads/all_agencies_csv_2016.zip">Download the full 2016 All Agency Data set</a> (.zip format)</li>
<li><a href="/downloads/all_agencies_csv_2015.zip">Download the full 2015 All Agency Data set</a> (.zip format)</li>
<li><a href="/downloads/all_agencies_csv_2014.zip">Download the full 2014 All Agency Data set</a> (.zip format)</li>
<li><a href="/downloads/all_agencies_csv_2013.zip">Download the full 2013 All Agency Data set</a> (.zip format)</li>
<li><a href="/downloads/all_agencies_csv_2012.zip">Download the full 2012 All Agency Data set</a> (.zip format)</li>
<li><a href="/downloads/all_agencies_csv_2011.zip">Download the full 2011 All Agency Data set</a> (.zip format)</li>
<li><a href="/downloads/all_agencies_csv_2010.zip">Download the full 2010 All Agency Data set</a> (.zip format)</li>
<li><a href="/downloads/all_agencies_csv_2009.zip">Download the full 2009 All Agency Data set</a> (.zip format)</li>
<li><a href="/downloads/all_agencies_csv_2008.zip">Download the full 2008 All Agency Data set</a> (.zip format)</li>
</ul>
</div>
</div>
);
}
Expand Down
Loading

0 comments on commit f25c304

Please sign in to comment.