Skip to content

Commit d7e9921

Browse files
committed
Remove broken view template buttons
1 parent cda1225 commit d7e9921

File tree

3 files changed

+2
-14
lines changed
  • src/pages/email

3 files changed

+2
-14
lines changed

src/pages/email/connectionfilter/list-templates/index.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,13 @@ const Page = () => {
66
const pageTitle = "Connection filter Templates";
77

88
const actions = [
9-
{
10-
label: "View Template",
11-
icon: <EyeIcon />, // Placeholder for the view icon
12-
color: "success",
13-
offCanvas: true,
14-
},
159
{
1610
label: "Delete Template",
1711
type: "POST",
1812
url: "/api/RemoveConnectionfilterTemplate",
1913
data: { ID: "GUID" },
2014
confirmText: "Do you want to delete the template?",
21-
icon: <TrashIcon />, // Placeholder for the delete icon
15+
icon: <TrashIcon />,
2216
color: "danger",
2317
},
2418
];

src/pages/email/connectors/list-connector-templates/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const Page = () => {
1515
ID: "GUID",
1616
},
1717
confirmText: "Do you want to delete the template?",
18-
icon: <TrashIcon />, // Placeholder for delete icon
18+
icon: <TrashIcon />,
1919
color: "danger",
2020
},
2121
];

src/pages/email/spamfilter/list-templates/index.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@ const Page = () => {
66
const pageTitle = "Spamfilter Templates";
77

88
const actions = [
9-
{
10-
label: "View Template",
11-
icon: <EyeIcon />, // Placeholder for the view icon
12-
color: "success",
13-
offCanvas: true,
14-
},
159
{
1610
label: "Delete Template",
1711
type: "POST",

0 commit comments

Comments
 (0)