itizawa 5 лет назад
Родитель
Сommit
34dc6b74c4
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      src/client/js/components/Navbar/AuthorInfo.jsx

+ 2 - 2
src/client/js/components/Navbar/AuthorInfo.jsx

@@ -14,8 +14,8 @@ const AuthorInfo = (props) => {
     ? 'Created by'
     : 'Updated by';
   const infoLabelForFooter = mode === 'create'
-    ? 'Last revision posted at'
-    : 'Created at';
+    ? 'Created at'
+    : 'Last revision posted at';
   const userLabel = user != null
     ? <a href={userPageRoot(user)}>{user.name}</a>
     : <i>Unknown</i>;