diff --git a/app/assets/styles/home.css b/app/assets/styles/home.css
index 90fd37c..002183a 100644
--- a/app/assets/styles/home.css
+++ b/app/assets/styles/home.css
@@ -96,6 +96,10 @@
justify-content: space-around
}
+.title-header-link:hover {
+ color: #6F7E8C;
+}
+
@media (width <= 570px) {
diff --git a/app/components/itemDialog.tsx b/app/components/itemDialog.tsx
index eafe944..28e5667 100644
--- a/app/components/itemDialog.tsx
+++ b/app/components/itemDialog.tsx
@@ -16,7 +16,7 @@ export default function ItemDialog({ blacklistItem, open, handleClose }: { black
onClose={() => handleClose()}
>
{width < 570 ? trimLink(name) : name}
+ ) + } +} \ No newline at end of file diff --git a/app/components/itemDialog/titleHeader.tsx b/app/components/itemDialog/titleHeader.tsx index 54da542..2cbfe6e 100644 --- a/app/components/itemDialog/titleHeader.tsx +++ b/app/components/itemDialog/titleHeader.tsx @@ -1,11 +1,12 @@ import {IconButton} from "@mui/material"; import CloseIcon from '@mui/icons-material/Close'; +import NameField from "~/components/itemDialog/NameField"; -export default function TitleHeader({ name, handleClose }:{ name: string|undefined, handleClose: Function }){ +export default function TitleHeader({ name, handleClose, isLink }:{ name: string|undefined, handleClose: Function, isLink: boolean }){ return ( <>{name}
+