Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions pdf-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
As a minor extension, we also keep a semantic version for the `UNRELEASED`
changes.


## [v0.7.0-beta-28](https://www.npmjs.com/package/@intersect.mbo/pdf-ui/v/0.7.0-beta-28) 2025-05-15

### Fixed
- fix: [Bug: "Other" Contracting Method Details Not Displayed in Review](https://github.com/IntersectMBO/govtool/issues/3553)

## [v0.7.0-beta-27](https://www.npmjs.com/package/@intersect.mbo/pdf-ui/v/0.7.0-beta-27) 2025-05-14

- feat: [Disable interactions on budget proposals](https://github.com/IntersectMBO/govtool/issues/3614)
Expand Down
2 changes: 1 addition & 1 deletion pdf-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@intersect.mbo/pdf-ui",
"version": "0.7.0-beta-27",
"version": "0.7.0-beta-28",
"description": "Proposal discussion ui",
"main": "./src/index.js",
"exports": {
Expand Down
23 changes: 23 additions & 0 deletions pdf-ui/src/components/BudgetDiscussionReviewVersions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -841,6 +841,29 @@ const BudgetDiscussionReviewVersions = ({ open, onClose, id }) => {
}
answerTestId={`proposal-contracting`}
/>
{selectedVersion
?.attributes
?.bd_proposal_detail
?.data
?.attributes
?.contract_type_name
?.data
?.attributes
?.contract_type_name ===
'Other' && (
<BudgetDiscussionInfoSegment
question='Please describe what you have in mind.'
answer={
selectedVersion
?.attributes
?.bd_proposal_detail
?.data
?.attributes
?.other_contract_type
}
answerTestId={`other-contract-description`}
/>
)}
</Box>

<Box
Expand Down