diff --git a/Client/src/Components/Sidebar/index.jsx b/Client/src/Components/Sidebar/index.jsx index d6d25fbc2..b071caa1e 100644 --- a/Client/src/Components/Sidebar/index.jsx +++ b/Client/src/Components/Sidebar/index.jsx @@ -43,6 +43,7 @@ import DotsVertical from "../../assets/icons/dots-vertical.svg?react"; import ChangeLog from "../../assets/icons/changeLog.svg?react"; import Docs from "../../assets/icons/docs.svg?react"; import Folder from "../../assets/icons/folder.svg?react"; +import ChatBubbleOutlineRoundedIcon from "@mui/icons-material/ChatBubbleOutlineRounded"; import "./index.css"; @@ -63,20 +64,31 @@ const menu = [ { name: "Team", path: "account/team", icon: }, ], }, + { + name: "Settings", + icon: , + path: "settings", + }, { name: "Other", icon: , nested: [ - { name: "Settings", path: "settings", icon: }, { name: "Support", path: "support", icon: }, + { + name: "Discussions", + path: "discussions", + icon: , + }, { name: "Docs", path: "docs", icon: }, { name: "Changelog", path: "changelog", icon: }, ], }, ]; +/* TODO this could be a key in nested Path would be the link */ const URL_MAP = { - support: "https://github.com/bluewave-labs/bluewave-uptime/issues", + support: "https://discord.com/invite/NAb6H3UTjK", + discussions: "https://github.com/bluewave-labs/checkmate/discussions", docs: "https://bluewavelabs.gitbook.io/checkmate", changelog: "https://github.com/bluewave-labs/bluewave-uptime/releases", }; diff --git a/Client/src/Pages/Uptime/Home/UptimeTable/index.jsx b/Client/src/Pages/Uptime/Home/UptimeTable/index.jsx index 2df915062..2905caf67 100644 --- a/Client/src/Pages/Uptime/Home/UptimeTable/index.jsx +++ b/Client/src/Pages/Uptime/Home/UptimeTable/index.jsx @@ -329,6 +329,7 @@ MonitorTable.propTypes = { setIsSearching: PropTypes.func, isSearching: PropTypes.bool, setMonitorUpdateTrigger: PropTypes.func, + handlePause: PropTypes.func, }; const MemoizedMonitorTable = memo(MonitorTable);