Skip to content

Commit

Permalink
Merge pull request #66 from IntersectMBO/BugFix-#2472-#2651
Browse files Browse the repository at this point in the history
BugFix #2471, #2651
  • Loading branch information
nebojsact authored Jan 19, 2025
2 parents c3cd7e7 + 0b5899b commit 99d99c9
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 4 deletions.
11 changes: 10 additions & 1 deletion backend/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,19 @@ 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.1.1](https://www.npmjs.com/package/@intersect.mbo/pdf-ui/v/0.5.6) 2024-12-28
### Added -
### Fixed
= Changed copy on landing page [Issue #2438](https://github.com/IntersectMBO/govtool/issues/2544)

### Changed -
### Removed -
## [tag-xxxx](https://github.com/IntersectMBO/xxxx/releases/tag/xxxx) 2024-xx-xx

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


### Fixed
-
Expand Down
2 changes: 1 addition & 1 deletion pdf-ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.5.6",
"version": "0.5.7",
"description": "Proposal discussion ui",
"main": "./src/index.js",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion pdf-ui/src/components/ProposalsList/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const ProposalsList = ({
const [pageCount, setPageCount] = useState(0);
const [currentPage, setCurrentPage] = useState(1);
const [mounted, setMounted] = useState(false);
const debouncedSearchValue = useDebounce(searchText);
const debouncedSearchValue = useDebounce(searchText.trim());
const [shouldRefresh, setShouldRefresh] = useState(false);
const isXs = useMediaQuery(theme.breakpoints.only('xs'));
const isSm = useMediaQuery(theme.breakpoints.only('sm'));
Expand Down
2 changes: 2 additions & 0 deletions pdf-ui/src/components/ReviewVersions/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ const ReviewVersions = ({ open, onClose, id }) => {
}, [open]);

return (
<Typography>
<Dialog
fullScreen
open={open}
Expand Down Expand Up @@ -635,6 +636,7 @@ const ReviewVersions = ({ open, onClose, id }) => {
</Grid>
)}
</Dialog>
</Typography>
);
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,7 @@ const SingleGovernanceAction = ({ id }) => {
return !proposal ? null : proposal?.attributes?.content?.attributes
?.is_draft ? null : (
<>
<Typography>
{openEditDialog ? (
<EditProposalDialog
proposal={proposal}
Expand Down Expand Up @@ -1858,6 +1859,7 @@ const SingleGovernanceAction = ({ id }) => {
/>
</Box>
)}
</Typography>
</>
);
};
Expand Down

0 comments on commit 99d99c9

Please sign in to comment.