Skip to content

Commit 8eacfcb

Browse files
committed
restore bulk calendar removal functionality
1 parent a05b65e commit 8eacfcb

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/pages/identity/administration/users/user/exchange.jsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,8 @@ const Page = () => {
414414
type: "POST",
415415
icon: <Delete />,
416416
url: "/api/ExecModifyCalPerms",
417-
customDataFormatter: (row, action, formData) => {
417+
customDataformatter: (row, action, formData) => {
418+
console.log(row);
418419
// build permissions
419420
var permissions = [];
420421
// if the row is an array, iterate through it
@@ -442,11 +443,9 @@ const Page = () => {
442443
permissions: permissions,
443444
};
444445
},
445-
446446
confirmText: "Are you sure you want to remove this calendar permission?",
447447
multiPost: false,
448448
relatedQueryKeys: `CalendarPermissions-${userId}`,
449-
hideBulk: true,
450449
condition: (row) => row.User !== "Default" && row.User == "Anonymous",
451450
},
452451
],

0 commit comments

Comments
 (0)