soumaeda пре 2 година
родитељ
комит
9166b47b3c

+ 1 - 1
apps/app/src/components/Bookmarks/BookmarkItem.tsx

@@ -136,7 +136,7 @@ export const BookmarkItem = (props: Props): JSX.Element => {
             onPressEnter={pressEnterForRenameHandler}
             validationTarget={ValidationTarget.PAGE}
           />
-        ) : <PageListItemS page={bookmarkedPage} pageTitle={pageTitle} isNarrowView/>}
+        ) : <PageListItemS page={bookmarkedPage} pageTitle={pageTitle} isNarrowView noLink/>}
 
         <div className='grw-foldertree-control'>
           <PageItemControl

+ 3 - 0
apps/app/src/components/PageList/PageListItemS.tsx

@@ -31,6 +31,9 @@ export const PageListItemS = (props: PageListItemSProps): JSX.Element => {
   if (!noLink) {
     pagePathElement = <a className="text-break" href={page.path}>{pagePathElement}</a>;
   }
+  else {
+    pagePathElement = <p className="text-break mt-3">{pagePathElement}</p>;
+  }
 
   return (
     <>