Skip to content

Commit cf56721

Browse files
authored
Merge pull request #3542 from KelvinTegelaar/dev
Dev to hotfix
2 parents 517fc23 + f740ad5 commit cf56721

File tree

102 files changed

+1363
-827
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+1363
-827
lines changed

generate-placeholders.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ const pages = [
3535
{ title: "Backup Wizard", path: "/tenant/backup/backup-wizard" },
3636
{ title: "Restore Wizard", path: "/tenant/backup/restore-wizard" },
3737
{ title: "Tools", path: "/tenant/administration" },
38-
{ title: "Graph Explorer", path: "/tenant/administration/graph-explorer" },
39-
{ title: "Application Approval", path: "/tenant/administration/appapproval" },
38+
{ title: "Graph Explorer", path: "/tenant/tools/graph-explorer" },
39+
{ title: "Application Approval", path: "/tenant/tools/appapproval" },
4040
{ title: "IP Database", path: "/tenant/tools/geoiplookup" },
4141
{ title: "Tenant Lookup", path: "/tenant/administration/tenantlookup" },
42-
{ title: "Individual Domain Check", path: "/tenant/standards/individual-domains" },
42+
{ title: "Individual Domain Check", path: "/tenant/tools/individual-domains" },
4343
{ title: "BPA Report Builder", path: "/tenant/tools/bpa-report-builder" },
4444
{ title: "Standards", path: "/tenant/standards" },
4545
{ title: "Edit Standards", path: "/tenant/standards/list-applied-standards" },
@@ -82,7 +82,7 @@ const pages = [
8282
{ title: "Add Profile", path: "/endpoint/autopilot/add-profile" },
8383
{ title: "Status Pages", path: "/endpoint/autopilot/list-status-pages" },
8484
{ title: "Add Status Page", path: "/endpoint/autopilot/add-status-page" },
85-
{ title: "Devices", path: "/endpoint/reports/devices" },
85+
{ title: "Devices", path: "/endpoint/MEM/devices" },
8686
{ title: "Configuration Policies", path: "/endpoint/MEM/list-policies" },
8787
{ title: "Compliance Policies", path: "/endpoint/MEM/list-compliance-policies" },
8888
{ title: "Protection Policies", path: "/endpoint/MEM/list-appprotection-policies" },
@@ -108,9 +108,9 @@ const pages = [
108108
{ title: "Transport rules", path: "/email/transport/list-rules" },
109109
{ title: "Deploy Transport rule", path: "/email/transport/deploy-rules" },
110110
{ title: "Transport Templates", path: "/email/transport/list-templates" },
111-
{ title: "Connectors", path: "/email/connectors/list-connectors" },
111+
{ title: "Connectors", path: "/email/transport/list-connectors" },
112112
{ title: "Deploy Connector Templates", path: "/email/connectors/deploy-connector" },
113-
{ title: "Connector Templates", path: "/email/connectors/list-connector-templates" },
113+
{ title: "Connector Templates", path: "/email/transport/list-connector-templates" },
114114
{ title: "Spamfilter", path: "/email/spamfilter/list-spamfilter" },
115115
{ title: "Apply Spamfilter Template", path: "/email/spamfilter/deploy" },
116116
{ title: "Templates", path: "/email/spamfilter/list-templates" },

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "cipp",
3-
"version": "7.0.0",
3+
"version": "7.1.3",
44
"author": "CIPP Contributors",
55
"homepage": "https://cipp.app/",
66
"bugs": {
77
"url": "https://github.com/KelvinTegelaar/CIPP/issues"
88
},
99
"license": "AGPL-3.0",
1010
"engines": {
11-
"node": "^18.17.0"
11+
"node": "^20.18.1"
1212
},
1313
"repository": {
1414
"type": "git",

public/assets/integrations/github.png

12.7 KB
Loading
30.4 KB
Loading

public/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "7.1.2"
2+
"version": "7.1.3"
33
}

src/components/CippCards/CippUserInfoCard.jsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,11 @@ export const CippUserInfoCard = (props) => {
9191
)
9292
}
9393
/>
94+
<PropertyListItem
95+
divider
96+
label="User ID"
97+
value={isFetching ? <Skeleton variant="text" width={120} /> : user?.id || "N/A"}
98+
/>
9499
<PropertyListItem
95100
divider
96101
label="Email Address"

src/components/CippComponents/CippApiDialog.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ export const CippApiDialog = (props) => {
7979
} else {
8080
Object.keys(dataObject).forEach((key) => {
8181
const value = dataObject[key];
82-
8382
if (typeof value === "string" && value.startsWith("!")) {
8483
newData[key] = value.slice(1);
8584
} else if (typeof value === "string") {

src/components/CippComponents/CippUserActions.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ export const CippUserActions = () => {
9898
{ label: "Disabled", value: "Disabled" },
9999
],
100100
multiple: false,
101+
creatable: false,
101102
},
102103
],
103104
confirmText: "Are you sure you want to set per-user MFA for these users?",

src/components/CippFormPages/CippAddGroupForm.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const CippAddGroupForm = (props) => {
5151
formControl={formControl}
5252
name="owners"
5353
label="Owners"
54-
multiple={false}
54+
multiple={true}
5555
select={"id,userPrincipalName,displayName"}
5656
/>
5757
</Grid>
@@ -62,7 +62,7 @@ const CippAddGroupForm = (props) => {
6262
formControl={formControl}
6363
name="members"
6464
label="Members"
65-
multiple={false}
65+
multiple={true}
6666
select={"id,userPrincipalName,displayName"}
6767
/>
6868
</Grid>

src/components/CippFormPages/CippFormPage.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const CippFormPage = (props) => {
2727
formControl,
2828
postUrl,
2929
customDataformatter,
30-
resetForm = true,
30+
resetForm = false,
3131
hideBackButton = false,
3232
hidePageType = false,
3333
hideTitle = false,
@@ -36,7 +36,6 @@ const CippFormPage = (props) => {
3636
...other
3737
} = props;
3838
const router = useRouter();
39-
4039
//check if there are
4140
const postCall = ApiPostCall({
4241
datafromUrl: true,

0 commit comments

Comments
 (0)