Skip to content

Commit 1610d1a

Browse files
authored
Merge pull request #67 from IntersectMBO/dev
From Dev to QA
2 parents d10be52 + 99d99c9 commit 1610d1a

File tree

6 files changed

+17
-4
lines changed

6 files changed

+17
-4
lines changed

backend/CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,19 @@ 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+
## [v0.1.1](https://www.npmjs.com/package/@intersect.mbo/pdf-ui/v/0.5.6) 2024-12-28
12+
### Added -
13+
### Fixed
14+
= Changed copy on landing page [Issue #2438](https://github.com/IntersectMBO/govtool/issues/2544)
15+
16+
### Changed -
17+
### Removed -
1118
## [tag-xxxx](https://github.com/IntersectMBO/xxxx/releases/tag/xxxx) 2024-xx-xx
1219

1320
### Added
14-
-
21+
- Unable to Vote on New Poll After Previous Poll is Closed[tag-xxxx](https://github.com/IntersectMBO/xxxx/releases/tag/xxxx)
22+
#2508
23+
1524

1625
### Fixed
1726
-

pdf-ui/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.5.6",
3+
"version": "0.5.7",
44
"description": "Proposal discussion ui",
55
"main": "./src/index.js",
66
"exports": {

pdf-ui/src/components/ProposalsList/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const ProposalsList = ({
4242
const [pageCount, setPageCount] = useState(0);
4343
const [currentPage, setCurrentPage] = useState(1);
4444
const [mounted, setMounted] = useState(false);
45-
const debouncedSearchValue = useDebounce(searchText);
45+
const debouncedSearchValue = useDebounce(searchText.trim());
4646
const [shouldRefresh, setShouldRefresh] = useState(false);
4747
const isXs = useMediaQuery(theme.breakpoints.only('xs'));
4848
const isSm = useMediaQuery(theme.breakpoints.only('sm'));

pdf-ui/src/components/ReviewVersions/index.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ const ReviewVersions = ({ open, onClose, id }) => {
6262
}, [open]);
6363

6464
return (
65+
<Typography>
6566
<Dialog
6667
fullScreen
6768
open={open}
@@ -635,6 +636,7 @@ const ReviewVersions = ({ open, onClose, id }) => {
635636
</Grid>
636637
)}
637638
</Dialog>
639+
</Typography>
638640
);
639641
};
640642

pdf-ui/src/pages/ProposedGovernanceActions/SingleGovernanceAction/index.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -388,6 +388,7 @@ const SingleGovernanceAction = ({ id }) => {
388388
return !proposal ? null : proposal?.attributes?.content?.attributes
389389
?.is_draft ? null : (
390390
<>
391+
<Typography>
391392
{openEditDialog ? (
392393
<EditProposalDialog
393394
proposal={proposal}
@@ -1858,6 +1859,7 @@ const SingleGovernanceAction = ({ id }) => {
18581859
/>
18591860
</Box>
18601861
)}
1862+
</Typography>
18611863
</>
18621864
);
18631865
};

0 commit comments

Comments
 (0)