WNomunomu 2 лет назад
Родитель
Сommit
264a41294d

+ 1 - 0
apps/app/src/components/ItemsTree/index.ts

@@ -1,3 +1,4 @@
 export * from './PageTree';
 export * from './PageTree';
 export { ItemNode } from './ItemNode';
 export { ItemNode } from './ItemNode';
 export * from './PrivateLegacyPagesLink';
 export * from './PrivateLegacyPagesLink';
+export * from './ItemsTree';

+ 1 - 2
apps/app/src/components/TreeItem/SimpleItem.tsx

@@ -11,7 +11,6 @@ import { useTranslation } from 'next-i18next';
 import { useRouter } from 'next/router';
 import { useRouter } from 'next/router';
 import { UncontrolledTooltip } from 'reactstrap';
 import { UncontrolledTooltip } from 'reactstrap';
 
 
-import { TriangleIcon } from '~/components/Icons/TriangleIcon';
 import { IPageToDeleteWithMeta, IPageForItem } from '~/interfaces/page';
 import { IPageToDeleteWithMeta, IPageForItem } from '~/interfaces/page';
 import { IPageForPageDuplicateModal } from '~/stores/modal';
 import { IPageForPageDuplicateModal } from '~/stores/modal';
 import { useSWRxPageChildren } from '~/stores/page-listing';
 import { useSWRxPageChildren } from '~/stores/page-listing';
@@ -249,7 +248,7 @@ export const SimpleItem: FC<SimpleItemProps> = (props) => {
               onClick={onClickLoadChildren}
               onClick={onClickLoadChildren}
             >
             >
               <div className="d-flex justify-content-center">
               <div className="d-flex justify-content-center">
-                <TriangleIcon />
+                <span className="material-icons-round">arrow_right</span>
               </div>
               </div>
             </button>
             </button>
           )}
           )}