Merge pull request #60 from JaiSharma1710/bugfix/#43-update-icons-for-subscribers-and-labels

Resolved Issue #43 - Update Icons for Labels and Subscribers
This commit is contained in:
Mohamed Marrouchi 2024-09-22 10:28:33 +01:00 committed by GitHub
commit 2d48be26b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -7,8 +7,8 @@
* 3. SaaS Restriction: This software, or any derivative of it, may not be used to offer a competing product or service (SaaS) without prior written consent from Hexastack. Offering the software as a service or using it in a commercial cloud environment without express permission is strictly prohibited.
*/
import { faTags } from "@fortawesome/free-solid-svg-icons";
import AddIcon from "@mui/icons-material/Add";
import FolderIcon from "@mui/icons-material/Folder";
import { Button, Grid, Paper } from "@mui/material";
import { GridColDef } from "@mui/x-data-grid";
import React from "react";
@ -158,7 +158,7 @@ export const Labels = () => {
if (deleteDialogCtl?.data) deleteLabel(deleteDialogCtl.data);
}}
/>
<PageHeader icon={FolderIcon} title={t("title.labels")}>
<PageHeader icon={faTags} title={t("title.labels")}>
<Grid
justifyContent="flex-end"
gap={1}

View File

@ -7,8 +7,8 @@
* 3. SaaS Restriction: This software, or any derivative of it, may not be used to offer a competing product or service (SaaS) without prior written consent from Hexastack. Offering the software as a service or using it in a commercial cloud environment without express permission is strictly prohibited.
*/
import AccountCircleIcon from "@mui/icons-material/AccountCircle";
import DeleteIcon from "@mui/icons-material/Close";
import FolderIcon from "@mui/icons-material/Folder";
import { Grid, IconButton, MenuItem, Paper } from "@mui/material";
import { GridColDef } from "@mui/x-data-grid";
import React, { useState } from "react";
@ -170,7 +170,7 @@ export const Subscribers = () => {
return (
<Grid container gap={3} flexDirection="column">
<EditSubscriberDialog {...getDisplayDialogs(editDialogCtl)} />
<PageHeader icon={FolderIcon} title={t("title.subscribers")}>
<PageHeader icon={AccountCircleIcon} title={t("title.subscribers")}>
<Grid
justifyContent="flex-end"
gap={1}