diff --git a/public/version_latest.txt b/public/version_latest.txt index acf69b48b843..3bff059174b8 100644 --- a/public/version_latest.txt +++ b/public/version_latest.txt @@ -1 +1 @@ -5.1.0 \ No newline at end of file +5.1.1 \ No newline at end of file diff --git a/src/components/tables/CippTable.jsx b/src/components/tables/CippTable.jsx index 81dcd5e92507..32f89ad71795 100644 --- a/src/components/tables/CippTable.jsx +++ b/src/components/tables/CippTable.jsx @@ -573,7 +573,14 @@ export default function CippTable({ return output } filtered = filtered.map((item) => flatten(item)) - const dataFlat = data.map((item) => flatten(item)) + + let dataFlat + + if (Array.isArray(data)) { + dataFlat = data.map((item) => flatten(item)) + } else { + dataFlat = [] + } if (!disablePDFExport) { if (dynamicColumns === true) { diff --git a/src/data/standards.json b/src/data/standards.json index c039f008aa29..8c49f0deb337 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -414,7 +414,7 @@ "helpText": "Enables the In-Place Online Archive for all UserMailboxes with a valid license.", "addedComponent": [], "label": "Enable Online Archive for all users", - "impact": "Medium Impact", + "impact": "Low Impact", "impactColour": "info" }, { @@ -582,6 +582,15 @@ "impact": "Low Impact", "impactColour": "info" }, + { + "name": "standards.DisableOutlookAddins", + "cat": "Exchange Standards", + "helpText": "Disables the ability for users to install add-ins in Outlook. This is to prevent users from installing malicious add-ins.", + "addedComponent": [], + "label": "Disable users from installing add-ins in Outlook", + "impact": "Medium Impact", + "impactColour": "warning" + }, { "name": "standards.SafeSendersDisable", "cat": "Exchange Standards", @@ -702,6 +711,15 @@ "impact": "Medium Impact", "impactColour": "warning" }, + { + "name": "standards.DisableSharePointLegacyAuth", + "cat": "SharePoint Standards", + "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.", + "addedComponent": [], + "label": "Disable legacy basic authentication for SharePoint", + "impact": "Medium Impact", + "impactColour": "warning" + }, { "name": "standards.sharingCapability", "cat": "SharePoint Standards", diff --git a/version_latest.txt b/version_latest.txt index acf69b48b843..3bff059174b8 100644 --- a/version_latest.txt +++ b/version_latest.txt @@ -1 +1 @@ -5.1.0 \ No newline at end of file +5.1.1 \ No newline at end of file