diff --git a/src/front/Components/DesignSystem/FolderBoxInformation/classes.module.scss b/src/front/Components/DesignSystem/FolderBoxInformation/classes.module.scss index 80051bd9..323dc0d5 100644 --- a/src/front/Components/DesignSystem/FolderBoxInformation/classes.module.scss +++ b/src/front/Components/DesignSystem/FolderBoxInformation/classes.module.scss @@ -46,9 +46,10 @@ @media (max-width: $screen-s) { flex-wrap: wrap; - .edit-icon { + .edit-icon-container { margin-left: 0px; margin-top: 24px; } } + } \ No newline at end of file diff --git a/src/front/Components/DesignSystem/FolderBoxInformation/index.tsx b/src/front/Components/DesignSystem/FolderBoxInformation/index.tsx index 0ef2e0ec..d350b6e2 100644 --- a/src/front/Components/DesignSystem/FolderBoxInformation/index.tsx +++ b/src/front/Components/DesignSystem/FolderBoxInformation/index.tsx @@ -15,8 +15,8 @@ type IProps = { export default function FolderBoxInformation(props: IProps) { const { isDescription = false } = props; const path = isDescription - ? "/dossier/".concat(props.folder.uid).concat("/todo") - : "/dossier/".concat(props.folder.uid).concat("/modifier"); + ? "/folder/".concat(props.folder.uid).concat("/update-description") + : "/folder/".concat(props.folder.uid).concat("/update-metadata"); return (