Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
b22bf7a
add helper text
JohnDuprey Aug 1, 2025
1b71e6e
add more form conditions
JohnDuprey Aug 1, 2025
1310abc
Merge branch 'dev' of https://github.com/KelvinTegelaar/CIPP into dev
JohnDuprey Aug 1, 2025
5cd08c1
Remove domains section
Aug 4, 2025
807d119
Merge branch 'dev' of https://github.com/KelvinTegelaar/CIPP into dev
Aug 4, 2025
8bcbc1b
Prevent portals being used before loading tenants is done
Aug 4, 2025
f3ce4d3
Don't load executive report data unless we click the button
Aug 4, 2025
4ea5561
Merge branch 'dev' of https://github.com/KelvinTegelaar/CIPP into dev
JohnDuprey Aug 4, 2025
417f179
fix link
JohnDuprey Aug 4, 2025
da98f97
Add start date-time picker to alert configuration
Zacgoose Aug 5, 2025
3f5e3a1
Merge pull request #4499 from Zacgoose/Alert-Run-Desired-Start
KelvinTegelaar Aug 5, 2025
021373d
new backup validation
JohnDuprey Aug 5, 2025
387ac1e
fix issues with backup repair
JohnDuprey Aug 6, 2025
a6ccff3
better validation of backup data
JohnDuprey Aug 6, 2025
dc6235b
improve blocked from spam check
KelvinTegelaar Aug 6, 2025
e82be7f
fix for managing mailbox rules in the user exchange view
Zacgoose Aug 6, 2025
2ed8455
changes to deploy policy for intune and make catalog clearer.
KelvinTegelaar Aug 7, 2025
d5b7904
CA deployment drawer
KelvinTegelaar Aug 7, 2025
fc686f0
Merge pull request #4507 from Zacgoose/exchangerules
KelvinTegelaar Aug 7, 2025
0e7cc9a
cleanup
KelvinTegelaar Aug 8, 2025
0d0c564
Merge branch 'dev' of https://github.com/KelvinTegelaar/CIPP into dev
KelvinTegelaar Aug 8, 2025
ec851e1
moved add application to drawer
KelvinTegelaar Aug 8, 2025
78cc164
Add new button to queue
KelvinTegelaar Aug 8, 2025
6cf261d
upgrade to new drawers
KelvinTegelaar Aug 8, 2025
640fb6d
global variables
KelvinTegelaar Aug 8, 2025
0cc6bd9
test
KelvinTegelaar Aug 8, 2025
6d12831
include more defensive checks on gdap overview page
JohnDuprey Aug 12, 2025
218e1aa
fix alert form, prevent errors due to missing tenant
JohnDuprey Aug 12, 2025
73f725f
handle null values for tenants
JohnDuprey Aug 12, 2025
e1ff41e
fix tenant mapping in integrations
JohnDuprey Aug 12, 2025
5fa519d
Fix richText editor value sync and effect dependencies
Zacgoose Aug 13, 2025
4a40c96
Fix blocked for spam
Zacgoose Aug 13, 2025
b02bfca
list sharepoints site members
JohnDuprey Aug 15, 2025
87b524f
add reserved placeholder support
JohnDuprey Aug 15, 2025
fdc56a3
null safety on exchange page
JohnDuprey Aug 15, 2025
03e83e2
add toggle for expanding group members
JohnDuprey Aug 15, 2025
4283dd4
policy catalog prettification
JohnDuprey Aug 18, 2025
7055523
prettier skeleton
JohnDuprey Aug 18, 2025
6fe248f
Merge pull request #4521 from Zacgoose/ooo-fix
JohnDuprey Aug 18, 2025
995836d
Merge pull request #4522 from Zacgoose/blocked-for-spam-fix
JohnDuprey Aug 18, 2025
b32bac0
Update CippPolicyImportDrawer.jsx
JohnDuprey Aug 18, 2025
14dab3f
Update version.json
JohnDuprey Aug 18, 2025
2e0baac
Merge pull request #4537 from KelvinTegelaar/dev
JohnDuprey Aug 18, 2025
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
4 changes: 2 additions & 2 deletions public/version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "8.3.0"
}
"version": "8.3.1"
}
2 changes: 1 addition & 1 deletion src/components/CippCards/CippExchangeInfoCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const CippExchangeInfoCard = (props) => {
</Stack>
}
/>
{exchangeData?.BlockedForSpam ? (
{exchangeData?.BlockedForSpam === true ? (
<Alert severity="warning" sx={{ mx: 2, mt: 2, mb: 2 }}>
This mailbox is currently blocked for spam.
</Alert>
Expand Down
Loading