Skip to content

Commit 07d4b9c

Browse files
authored
Merge pull request #2093 from fedspendingtransparency/staging
Sprint 218: Staging -> Master
2 parents 5f08c89 + 7b37d6e commit 07d4b9c

24 files changed

Lines changed: 926 additions & 1225 deletions

src/help/changelog.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#### March 17, 2026{section=changelog}
1+
#### April 7, 2026{section=changelog}
22
In this release of the Broker, we:
33

4-
* Updated GTAS Comparison Report to include 0000 and 9999 BOC values.
4+
* Updated A30.2 to ignore accounts in File B with no activity.
5+
* Fixed IIQ links on the Broker Permissions documentation.

src/help/history.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
#### February 24, 2026{section=changelog}
1+
#### March 17, 2026{section=changelog}
2+
In this release of the Broker, we:
3+
4+
* Updated GTAS Comparison Report to include 0000 and 9999 BOC values.
5+
6+
#### February 24, 2026
27
In this release of the Broker, we:
38

49
* Added support for new assistance types (F001-F010). Note that the currently existing assistance types (02-11) will still be supported until FY27.

src/help/technical.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#### March 17, 2026{section=technical}
1+
#### April 7, 2026{section=technical}
22

33
In this release, here is a list of technical changes that may require infrastructure or database updates, or represents additional functionality.
44

5-
* No additional technical release notes.
5+
* Reworked frontend structure for the Broker Submission table pages.

src/help/technicalHistory.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
#### February 24, 2026{section=technical}
1+
#### March 17, 2026{section=technical}
2+
3+
In this release, here is a list of technical changes that may require infrastructure or database updates, or represents additional functionality.
4+
5+
* No additional technical release notes.
6+
7+
#### February 24, 2026
28

39
In this release, here is a list of technical changes that may require infrastructure or database updates, or represents additional functionality.
410

src/js/components/submissionsTable/HistoryLink.jsx

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
* Created by Minahm Kim 06/05/17
44
*/
55

6-
import React from 'react';
76
import { Link } from 'react-router';
87
import PropTypes from 'prop-types';
98
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
@@ -15,16 +14,15 @@ const propTypes = {
1514
]).isRequired
1615
};
1716

18-
export default class HistoryLink extends React.Component {
19-
render() {
20-
return (
21-
<div className="usa-da-recent-activity-link">
22-
<Link to={`/submissionHistory/${this.props.submissionId}`} aria-label="history-link">
23-
<FontAwesomeIcon icon={['far', 'calendar-days']} title="View" className="calendar-icon" />
24-
</Link>
25-
</div>
26-
);
27-
}
28-
}
17+
const HistoryLink = (props) => {
18+
return (
19+
<div className="usa-da-recent-activity-link">
20+
<Link to={`/submissionHistory/${props.submissionId}`} aria-label="history-link">
21+
<FontAwesomeIcon icon={['far', 'calendar-days']} title="View" className="calendar-icon" />
22+
</Link>
23+
</div>
24+
);
25+
};
2926

3027
HistoryLink.propTypes = propTypes;
28+
export default HistoryLink;

0 commit comments

Comments
 (0)