|
@@ -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
|
|
|
};
|
|
};
|