Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions src/js/components/help/resourcesContent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

import React from 'react';
import PropTypes from 'prop-types';
import { kGlobalConstants } from '../../GlobalConstants';

const propTypes = {
type: PropTypes.string
Expand All @@ -16,6 +17,7 @@ const defaultProps = {

export default class ResourcesContent extends React.Component {
render() {
const fileLoc = kGlobalConstants.PROD ? 'files' : 'files-nonprod';
return (
<div className="usa-da-help-content">
<div className="resources-page">
Expand Down Expand Up @@ -77,6 +79,17 @@ export default class ResourcesContent extends React.Component {
deletions, validation rule source data, user management, technical procedures for formatting
submission files, etc.
</li>
<li>
<a
href={`https://${fileLoc}.usaspending.gov/reference_data/` +
`GSDM Warning and Errors Report Specification v1.2.xlsx`}
target="_blank"
rel="noopener noreferrer">
Warning & Error Report Specification (WERS)
</a>
&nbsp;captures the structure used in the Warning and Error Reports from the Data Broker and
provides description and example values for the header columns.
</li>
</ul>
</div>
</div>
Expand Down
Loading