yusuketk 5 лет назад
Родитель
Сommit
de6b749ba2

+ 0 - 0
src/client/js/components/Icons/RecentChangesIcon.jsx → src/client/js/components/Icons/HistoryIcon.jsx


+ 2 - 2
src/client/js/components/PageAccessoriesModal.jsx

@@ -9,7 +9,7 @@ import { withTranslation } from 'react-i18next';
 
 import PageListIcon from './Icons/PageListIcon';
 import TimeLineIcon from './Icons/TimeLineIcon';
-import RecentChangesIcon from './Icons/RecentChangesIcon';
+import HistoryIcon from './Icons/HistoryIcon';
 import AttachmentIcon from './Icons/AttachmentIcon';
 import ShareLinkIcon from './Icons/ShareLinkIcon';
 
@@ -36,7 +36,7 @@ const navTabMapping = {
     isGuestNotAllowed: false,
   },
   pageHistory: {
-    icon: <RecentChangesIcon />,
+    icon: <HistoryIcon />,
     i18n: 'History',
     index: 2,
     isGuestNotAllowed: false,

+ 2 - 2
src/client/js/components/PageComment/Comment.jsx

@@ -17,7 +17,7 @@ import UserPicture from '../User/UserPicture';
 import Username from '../User/Username';
 import CommentEditor from './CommentEditor';
 import CommentControl from './CommentControl';
-import RecentChangesIcon from '../Icons/RecentChangesIcon';
+import HistoryIcon from '../Icons/HistoryIcon';
 
 /**
  *
@@ -203,7 +203,7 @@ class Comment extends React.PureComponent {
                 )}
                 <span className="ml-2">
                   <a id={`page-comment-revision-${commentId}`} className="page-comment-revision" href={revHref}>
-                    <RecentChangesIcon />
+                    <HistoryIcon />
                   </a>
                   <UncontrolledTooltip placement="bottom" fade={false} target={`page-comment-revision-${commentId}`}>
                     {t('page_comment.display_the_page_when_posting_this_comment')}

+ 2 - 2
src/client/js/components/TopOfTableContents.jsx

@@ -8,7 +8,7 @@ import PageAccessoriesContainer from '../services/PageAccessoriesContainer';
 
 import PageListIcon from './Icons/PageListIcon';
 import TimeLineIcon from './Icons/TimeLineIcon';
-import RecentChangesIcon from './Icons/RecentChangesIcon';
+import HistoryIcon from './Icons/HistoryIcon';
 import AttachmentIcon from './Icons/AttachmentIcon';
 import ShareLinkIcon from './Icons/ShareLinkIcon';
 
@@ -53,7 +53,7 @@ const TopOfTableContents = (props) => {
           className="btn btn-link grw-btn-top-of-table"
           onClick={() => pageAccessoriesContainer.openPageAccessoriesModal('pageHistory')}
         >
-          <RecentChangesIcon />
+          <HistoryIcon />
         </button>
 
         <button