Skip to content

Commit

Permalink
Merge pull request KelvinTegelaar#2102 from KelvinTegelaar/dev
Browse files Browse the repository at this point in the history
Dev to hotfix
  • Loading branch information
KelvinTegelaar authored Feb 6, 2024
2 parents 3a47892 + fbe07ed commit 9d1698e
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 4 deletions.
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

0 comments on commit 9d1698e

Please sign in to comment.