Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev support/appeals 29347 30972 #19568

Merged
merged 7 commits into from
Sep 28, 2023
5 changes: 4 additions & 1 deletion client/app/queue/PowerOfAttorneyDetail.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,10 @@ PowerOfAttorneyNameUnconnected.propTypes = PowerOfAttorneyDetailUnconnected.prop
alertType: PropTypes.string,
powerOfAttorney: PropTypes.object
}),
appealId: PropTypes.string,
appealId: PropTypes.oneOfType([
PropTypes.number,
PropTypes.string
]),
appellantType: PropTypes.string,
vha: PropTypes.bool
};
Expand Down
3 changes: 3 additions & 0 deletions client/app/queue/QueueTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -834,4 +834,7 @@ HeaderRow.propTypes = FooterRow.propTypes = Row.propTypes = BodyRows.propTypes =
preserveFilter: PropTypes.bool,
};

Row.propTypes.rowObjects = PropTypes.arrayOf(PropTypes.object);
Row.propTypes = { ...Row.propTypes, rowObject: PropTypes.object.isRequired };

/* eslint-enable max-lines */
5 changes: 4 additions & 1 deletion client/app/queue/components/PoaRefresh.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,8 @@ PoaRefresh.propTypes = {
powerOfAttorney: PropTypes.shape({
poa_last_synced_at: PropTypes.string
}),
appealId: PropTypes.string
appealId: PropTypes.oneOfType([
PropTypes.number,
PropTypes.string
])
};
5 changes: 4 additions & 1 deletion client/app/queue/components/PoaRefreshButton.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,8 @@ export const PoaRefreshButton = ({ appealId }) => {
};

PoaRefreshButton.propTypes = {
appealId: PropTypes.string
appealId: PropTypes.oneOfType([
PropTypes.number,
PropTypes.string
])
};
Loading