Skip to content

Commit 9d1698e

Browse files
Merge pull request #2102 from KelvinTegelaar/dev
Dev to hotfix
2 parents 3a47892 + fbe07ed commit 9d1698e

File tree

4 files changed

+29
-4
lines changed

4 files changed

+29
-4
lines changed

public/version_latest.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.1.0
1+
5.1.1

src/components/tables/CippTable.jsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,14 @@ export default function CippTable({
573573
return output
574574
}
575575
filtered = filtered.map((item) => flatten(item))
576-
const dataFlat = data.map((item) => flatten(item))
576+
577+
let dataFlat
578+
579+
if (Array.isArray(data)) {
580+
dataFlat = data.map((item) => flatten(item))
581+
} else {
582+
dataFlat = []
583+
}
577584

578585
if (!disablePDFExport) {
579586
if (dynamicColumns === true) {

src/data/standards.json

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@
414414
"helpText": "Enables the In-Place Online Archive for all UserMailboxes with a valid license.",
415415
"addedComponent": [],
416416
"label": "Enable Online Archive for all users",
417-
"impact": "Medium Impact",
417+
"impact": "Low Impact",
418418
"impactColour": "info"
419419
},
420420
{
@@ -582,6 +582,15 @@
582582
"impact": "Low Impact",
583583
"impactColour": "info"
584584
},
585+
{
586+
"name": "standards.DisableOutlookAddins",
587+
"cat": "Exchange Standards",
588+
"helpText": "Disables the ability for users to install add-ins in Outlook. This is to prevent users from installing malicious add-ins.",
589+
"addedComponent": [],
590+
"label": "Disable users from installing add-ins in Outlook",
591+
"impact": "Medium Impact",
592+
"impactColour": "warning"
593+
},
585594
{
586595
"name": "standards.SafeSendersDisable",
587596
"cat": "Exchange Standards",
@@ -702,6 +711,15 @@
702711
"impact": "Medium Impact",
703712
"impactColour": "warning"
704713
},
714+
{
715+
"name": "standards.DisableSharePointLegacyAuth",
716+
"cat": "SharePoint Standards",
717+
"helpText": "Disables the ability to authenticate with SharePoint using legacy authentication methods. Any applications that use legacy authentication will need to be updated to use modern authentication.",
718+
"addedComponent": [],
719+
"label": "Disable legacy basic authentication for SharePoint",
720+
"impact": "Medium Impact",
721+
"impactColour": "warning"
722+
},
705723
{
706724
"name": "standards.sharingCapability",
707725
"cat": "SharePoint Standards",

version_latest.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.1.0
1+
5.1.1

0 commit comments

Comments
 (0)