Skip to content

Commit 31ec5be

Browse files
Merge pull request #255 from IntersectMBO/version-change-to-28
Version change to 28
2 parents 080f20d + 8d008a0 commit 31ec5be

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

pdf-ui/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
As a minor extension, we also keep a semantic version for the `UNRELEASED`
99
changes.
1010

11+
12+
## [v0.7.0-beta-28](https://www.npmjs.com/package/@intersect.mbo/pdf-ui/v/0.7.0-beta-28) 2025-05-15
13+
14+
### Fixed
15+
- fix: [Bug: "Other" Contracting Method Details Not Displayed in Review](https://github.com/IntersectMBO/govtool/issues/3553)
16+
1117
## [v0.7.0-beta-27](https://www.npmjs.com/package/@intersect.mbo/pdf-ui/v/0.7.0-beta-27) 2025-05-14
1218

1319
- feat: [Disable interactions on budget proposals](https://github.com/IntersectMBO/govtool/issues/3614)

pdf-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@intersect.mbo/pdf-ui",
3-
"version": "0.7.0-beta-27",
3+
"version": "0.7.0-beta-28",
44
"description": "Proposal discussion ui",
55
"main": "./src/index.js",
66
"exports": {

pdf-ui/src/components/BudgetDiscussionReviewVersions/index.js

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -841,6 +841,29 @@ const BudgetDiscussionReviewVersions = ({ open, onClose, id }) => {
841841
}
842842
answerTestId={`proposal-contracting`}
843843
/>
844+
{selectedVersion
845+
?.attributes
846+
?.bd_proposal_detail
847+
?.data
848+
?.attributes
849+
?.contract_type_name
850+
?.data
851+
?.attributes
852+
?.contract_type_name ===
853+
'Other' && (
854+
<BudgetDiscussionInfoSegment
855+
question='Please describe what you have in mind.'
856+
answer={
857+
selectedVersion
858+
?.attributes
859+
?.bd_proposal_detail
860+
?.data
861+
?.attributes
862+
?.other_contract_type
863+
}
864+
answerTestId={`other-contract-description`}
865+
/>
866+
)}
844867
</Box>
845868

846869
<Box

0 commit comments

Comments
 (0)