Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pull #3

Closed
wants to merge 25 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
1f3192d
add islicensed to all tenants
KelvinTegelaar Feb 7, 2023
07c3d8c
Update MFAReport.js
BNWEIN Feb 7, 2023
5c97206
Merge pull request #1361 from BNWEIN/dev
KelvinTegelaar Feb 7, 2023
bf0853c
Update ApplyStandard.js
BNWEIN Feb 8, 2023
991ed8b
Merge pull request #1365 from BNWEIN/dev
KelvinTegelaar Feb 8, 2023
ad64856
Fixed Issue with Deploying group templates for Mail Enabled Security …
BNWEIN Feb 9, 2023
d1e49c0
Merge pull request #1369 from BNWEIN/dev
KelvinTegelaar Feb 9, 2023
2864b9b
Update OffboardingWizard.js
BNWEIN Feb 9, 2023
2e5dfa6
add date picker
KelvinTegelaar Feb 9, 2023
b5c146d
Merge branch 'dev' of https://github.com/KelvinTegelaar/CIPP into dev
KelvinTegelaar Feb 9, 2023
44b0b27
Merge pull request #1370 from BNWEIN/dev
KelvinTegelaar Feb 9, 2023
4ae883a
fixes tab
KelvinTegelaar Feb 15, 2023
8d0d4a4
Update AddUser.js
BNWEIN Feb 23, 2023
b09f0c4
Update AutopilotAddDevice.js
BNWEIN Feb 23, 2023
24e5374
Merge pull request #1390 from BNWEIN/dev
KelvinTegelaar Feb 27, 2023
aeb9082
fixes minor issue with select
KelvinTegelaar Feb 27, 2023
748dc11
handle select changes
KelvinTegelaar Feb 27, 2023
d79c1c6
Update EditGroup.js
BNWEIN Feb 28, 2023
104d4cf
Merge pull request #1394 from BNWEIN/dev
KelvinTegelaar Feb 28, 2023
69749cb
fix bpa
KelvinTegelaar Feb 28, 2023
c6e8417
updated bpa to have new standards included.
KelvinTegelaar Feb 28, 2023
3ac1afd
removed selectable rows for release
KelvinTegelaar Mar 2, 2023
541028c
prep for release
KelvinTegelaar Mar 3, 2023
de9ddb2
updated packages
KelvinTegelaar Mar 3, 2023
4de156b
Merge pull request #1404 from KelvinTegelaar/dev
KelvinTegelaar Mar 3, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 112 additions & 3 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 @@ -57,6 +57,7 @@
"react-app-polyfill": "^2.0.0",
"react-copy-to-clipboard": "^5.0.4",
"react-data-table-component": "^7.4.5",
"react-datepicker": "^4.10.0",
"react-dom": "^17.0.2",
"react-final-form": "^6.5.7",
"react-final-form-listeners": "^1.0.3",
Expand Down
2 changes: 1 addition & 1 deletion public/version_latest.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.0
3.1.0
7 changes: 6 additions & 1 deletion src/components/tables/CellBoolean.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,16 @@ export default function CellBoolean({
} else if (typeof cell === 'string') {
if (
cell.toLowerCase() === 'success' ||
cell.toLowerCase() === 'enabled' ||
cell.toLowerCase() === 'pass' ||
cell.toLowerCase() === 'true'
) {
normalized = true
} else if (cell.toLowerCase() === 'fail' || cell.toLowerCase() === 'false') {
} else if (
cell.toLowerCase() === 'fail' ||
cell.toLowerCase() === 'default' ||
cell.toLowerCase() === 'false'
) {
normalized = false
}
}
Expand Down
Loading