mirror of
https://github.com/hexastack/hexabot
synced 2025-02-22 12:28:26 +00:00
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:
commit
2d48be26b4
@ -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}
|
||||
|
@ -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}
|
||||
|
Loading…
Reference in New Issue
Block a user