yusuketk vor 7 Jahren
Ursprung
Commit
87328a43d3
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      src/client/js/components/Page/TagLabels.jsx

+ 2 - 2
src/client/js/components/Page/TagLabels.jsx

@@ -54,13 +54,13 @@ class TagLabels extends React.Component {
       <div className="tag-viewer">
         {this.state.tags.length === 0 && (
           <a className="btn btn-link btn-edit-tags no-tags p-0" onClick={this.showEditor}>
-            {t('Add tags for this page')} <i className="manage-tags ml-2 icon-plus"></i>
+            { t('Add tags for this page') } <i className="manage-tags ml-2 icon-plus"></i>
           </a>
         )}
         {tagElements}
         {this.state.tags.length > 0 && (
           <a className="btn btn-link btn-edit-tags p-0" onClick={this.showEditor}>
-            <i className="manage-tags ml-2 icon-plus"></i> {t('Edit tags for this page')}
+            <i className="manage-tags ml-2 icon-plus"></i> { t('Edit tags for this page') }
           </a>
         )}