yusuketk 7 лет назад
Родитель
Сommit
92a9b15569
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/client/js/components/TagsList.jsx

+ 1 - 1
src/client/js/components/TagsList.jsx

@@ -153,7 +153,7 @@ class TagsList extends React.Component {
   render() {
   render() {
     const { t } = this.props;
     const { t } = this.props;
     const tagList = this.state.tagData.length ? (
     const tagList = this.state.tagData.length ? (
-      <ul className="list-group">{this.generateTagList(this.state.tagData)}</ul>
+      <ul className="list-group text-left">{this.generateTagList(this.state.tagData)}</ul>
     ) : (
     ) : (
       <h3>{ t('You have no tag, You can set tags on pages') }</h3>
       <h3>{ t('You have no tag, You can set tags on pages') }</h3>
     );
     );