Skip to content

Commit

Permalink
fix: added icon to global address list
Browse files Browse the repository at this point in the history
  • Loading branch information
OfficialEsco committed Jan 30, 2025
1 parent 360e275 commit 51fe974
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/pages/email/reports/global-address-list/index.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import { Layout as DashboardLayout } from "/src/layouts/index.js";
import { CippTablePage } from "/src/components/CippComponents/CippTablePage.jsx";
import { Visibility, VisibilityOff } from "@mui/icons-material";

const Page = () => {
const actions = [
{
label: "Unhide from Global Address List",
type: "POST",
url: "/api/ExecHideFromGAL",
icon: <Visibility />,
data: {
HideFromGAL: false,
ID: "PrimarySmtpAddress",
Expand All @@ -18,6 +20,7 @@ const Page = () => {
label: "Hide from Global Address List",
type: "POST",
url: "/api/ExecHideFromGAL",
icon: <VisibilityOff />,
data: {
HideFromGAL: true,
ID: "PrimarySmtpAddress",
Expand Down

0 comments on commit 51fe974

Please sign in to comment.