Skip to content

Commit

Permalink
Merge pull request #60 from JaiSharma1710/bugfix/#43-update-icons-for…
Browse files Browse the repository at this point in the history
…-subscribers-and-labels

Resolved Issue #43 - Update Icons for Labels and Subscribers
  • Loading branch information
marrouchi authored Sep 22, 2024
2 parents dd9ba40 + f467706 commit 2d48be2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/labels/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -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}
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/components/subscribers/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -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}
Expand Down

0 comments on commit 2d48be2

Please sign in to comment.