Skip to content

Commit

Permalink
1544 myprojects filter (#1547)
Browse files Browse the repository at this point in the history
* My Project Filter Drawer

* Remove experimental FilterButton.js
  • Loading branch information
entrotech authored Dec 2, 2023
1 parent 479279a commit 01c7461
Show file tree
Hide file tree
Showing 11 changed files with 667 additions and 158 deletions.
121 changes: 121 additions & 0 deletions client/package-lock.json

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

1 change: 1 addition & 0 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
"react-aria-modal": "^5.0.0",
"react-beautiful-dnd": "^13.1.1",
"react-csv": "^2.2.2",
"react-datepicker": "^4.24.0",
"react-dom": "^18.1.0",
"react-gtm-module": "^2.0.11",
"react-input-mask": "^2.0.4",
Expand Down
6 changes: 5 additions & 1 deletion client/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,11 @@ const App = ({
)
);

return <RouterProvider router={router} />;
return (
<div>
<RouterProvider router={router} />
</div>
);
};

App.propTypes = {
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Layout/ContentContainerNoSidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const useStyles = createUseStyles({
alignItems: "center",
minHeight: "calc(100vh - 103px - 48px)",
margin: "auto",
width: "85%"
width: "100%"
}
});

Expand Down
Loading

0 comments on commit 01c7461

Please sign in to comment.