Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
MegahNevel committed Dec 6, 2024
2 parents c4c1f38 + 8f4bda9 commit 06ceb94
Show file tree
Hide file tree
Showing 12 changed files with 595 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: front-ci

on:
push:
branches: [main, devel]
branches: [master, devel]
pull_request:
branches:
- main
- master
- devel
types: [opened, synchronize, reopened]

Expand Down
184 changes: 184 additions & 0 deletions 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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"json2csv": "^6.0.0-alpha.2",
"jspdf": "^2.5.2",
"prettier": "^3.3.3",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
Expand Down
4 changes: 2 additions & 2 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sonar.projectKey=fga-eps-mds_2024.1-SENTINELA-FRONT
sonar.projectKey=fga-eps-mds_2024.2-SENTINELA-FRONT
sonar.organization=fga-eps-mds-1

sonar.projectName=2024.1-SENTINELA-FRONT
sonar.projectName=2024.2-SENTINELA-FRONT

sonar.host.url=https://sonarcloud.io
sonar.language=js
Expand Down
9 changes: 9 additions & 0 deletions src/Components/SideBar/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,15 @@ export default function SideBar({ fullHeight = true }) {
setIsSideBarOpen(false);
}}
/>,
<SideButton
hidden={checkModule(permissions, "users") ? "flex" : "none"}
key="carteirinha"
text="CARTEIRINHA"
onClick={() => {
navigate("/carteirinha");
setIsSideBarOpen(false);
}}
/>
];

return (
Expand Down
Loading

0 comments on commit 06ceb94

Please sign in to comment.