Browse Source

edit message

yusuketk 7 years ago
parent
commit
ae75f621c4
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/client/js/components/Page/EditTagModal.jsx

+ 2 - 1
src/client/js/components/Page/EditTagModal.jsx

@@ -80,7 +80,7 @@ export default class EditTagModal extends React.Component {
           placement="bottom"
           placement="bottom"
           overlay={(
           overlay={(
             <Tooltip id="tooltip-bottom">
             <Tooltip id="tooltip-bottom">
-              {this.state.currentPageTags.length !== 0 ? this.state.currentPageTags.join() : 'ページタグ未設定'}
+              {this.state.currentPageTags.length !== 0 ? this.state.currentPageTags.join() : 'tag is not set' }
             </Tooltip>
             </Tooltip>
           )}
           )}
         >
         >
@@ -116,4 +116,5 @@ EditTagModal.propTypes = {
   crowi: PropTypes.object.isRequired,
   crowi: PropTypes.object.isRequired,
   pageId: PropTypes.string,
   pageId: PropTypes.string,
   style: PropTypes.object,
   style: PropTypes.object,
+  t: PropTypes.func.isRequired, // i18next
 };
 };