diff --git a/packages/asc-web-common/components/Navigation/Navigation.js b/packages/asc-web-common/components/Navigation/Navigation.js index 1ea8722ce2..6bab56fab0 100644 --- a/packages/asc-web-common/components/Navigation/Navigation.js +++ b/packages/asc-web-common/components/Navigation/Navigation.js @@ -153,7 +153,6 @@ const Navigation = ({ width={context.sectionWidth} isRootFolder={isRootFolder} canCreate={canCreate} - title={title} isTabletView={isTabletView} isRecycleBinFolder={isRecycleBinFolder} isDesktop={isDesktop} diff --git a/packages/asc-web-common/components/Navigation/sub-components/item.js b/packages/asc-web-common/components/Navigation/sub-components/item.js index 14b478e023..42d0cbeaa3 100644 --- a/packages/asc-web-common/components/Navigation/sub-components/item.js +++ b/packages/asc-web-common/components/Navigation/sub-components/item.js @@ -82,6 +82,7 @@ const Item = ({ id, title, isRoot, onClick, ...rest }) => { fontWeight={isRoot ? "600" : "400"} fontSize={"15px"} truncate={true} + title={title} > {title} diff --git a/packages/asc-web-common/components/Navigation/sub-components/text.js b/packages/asc-web-common/components/Navigation/sub-components/text.js index de0aaeb32a..9bfa2a8178 100644 --- a/packages/asc-web-common/components/Navigation/sub-components/text.js +++ b/packages/asc-web-common/components/Navigation/sub-components/text.js @@ -78,7 +78,7 @@ const Text = ({ title, isRootFolder, isOpen, onClick, ...rest }) => { onClick={onClick} {...rest} > - + {title} {!isRootFolder ? ( diff --git a/products/ASC.Files/Client/src/pages/Home/Section/Header/index.js b/products/ASC.Files/Client/src/pages/Home/Section/Header/index.js index 2d5afe39bf..b641e8c71a 100644 --- a/products/ASC.Files/Client/src/pages/Home/Section/Header/index.js +++ b/products/ASC.Files/Client/src/pages/Home/Section/Header/index.js @@ -375,7 +375,6 @@ class SectionHeaderContent extends React.Component { isRootFolder={isRootFolder} canCreate={canCreate} isRecycleBinFolder={isRecycleBinFolder} - title={title} isTitle={title} isDesktop={isDesktop} isTabletView={isTabletView}