Skip to content

Dev to hotfix #2102

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

Merged
merged 10 commits into from
Feb 6, 2024
2 changes: 1 addition & 1 deletion public/version_latest.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.0
5.1.1
9 changes: 8 additions & 1 deletion src/components/tables/CippTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
20 changes: 19 additions & 1 deletion src/data/standards.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
{
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion version_latest.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.0
5.1.1