Browse Source

Tooltip->Popover

visuddhinanda 3 years ago
parent
commit
e64e27b47c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      dashboard/src/components/corpus/TocPath.tsx

+ 2 - 2
dashboard/src/components/corpus/TocPath.tsx

@@ -74,9 +74,9 @@ const TocPathWidget = ({
     return fullPath;
   } else {
     return (
-      <Tooltip placement="bottom" title={fullPath}>
+      <Popover placement="bottomRight" title={fullPath}>
         {trigger}
-      </Tooltip>
+      </Popover>
     );
   }
 };