Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
pengyin-shan committed Feb 7, 2025
1 parent 73733b5 commit c83cc60
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 54 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Added
- Added the House Outlay Projection to 2024 Proposal tab and added this tab to Policy Lab page [#330](https://github.com/policy-design-lab/pdl-frontend/issues/330)

### Changed
- Move IRA table columns [#338](https://github.com/policy-design-lab/pdl-frontend/issues/338)
- Adjusted IRA table columns [#338](https://github.com/policy-design-lab/pdl-frontend/issues/338)
- Upgraded the node version from 16 to 22, including Dockerfile and GitHub Actions [#352](https://github.com/policy-design-lab/pdl-frontend/issues/352)

## [1.5.0] - 2024-12-10
Expand Down
53 changes: 0 additions & 53 deletions src/pages/PolicyLab/Proposals/SideBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,57 +62,4 @@ export function Sidebar({
</List>
</StyledSidebarContainer>
);
// onMenuSelect(value);
// };
// return (
// <Styles>
// <Drawer
// variant="permanent"
// anchor="left"
// sx={{
// "& .MuiDrawer-paper": {
// boxSizing: "border-box",
// width: 300,
// position: 'static'
// }
// }}
// PaperProps={{
// sx: {
// backgroundColor: "#ffffff",
// color: "gray"
// }
// }}
// open
// >
// <List>
// {menu.map((item, key) => (
// <ListItemButton
// key={item.title}
// onClick={() => handleMenuSelect(key.toString())}
// sx={{
// my: 0,
// py: 3,
// color: selectedItem === key.toString() ? "#2F7164" : "#272727",
// backgroundColor: selectedItem === key.toString() ? "#ECF0EE" : "inherit"
// }}
// >
// <ListItemText
// primary={
// <Box
// sx={{
// mx: 3,
// fontFamily: '"Roboto", sans-serif',
// fontWeight: selectedItem === key.toString() ? 600 : 400
// }}
// >
// {item.title}
// </Box>
// }
// />
// </ListItemButton>
// ))}
// </List>
// </Drawer>
// </Styles>
// );
}

0 comments on commit c83cc60

Please sign in to comment.