satof3 1 anno fa
parent
commit
c02636c1a5

+ 1 - 1
apps/app/src/components/Admin/ElasticsearchManagement/StatusTable.jsx

@@ -47,7 +47,7 @@ class StatusTable extends React.PureComponent {
 
 
     return isNormalized
     return isNormalized
       ? <span className="badge text-bg-info">{ t('full_text_search_management.indices_status_label_normalized') }</span>
       ? <span className="badge text-bg-info">{ t('full_text_search_management.indices_status_label_normalized') }</span>
-      : <span className="badge text-bg-warning text-dark">{ t('full_text_search_management.indices_status_label_unnormalized') }</span>;
+      : <span className="badge text-bg-warning">{ t('full_text_search_management.indices_status_label_unnormalized') }</span>;
   }
   }
 
 
   renderIndexInfoPanel(indexName, body = {}, aliases = []) {
   renderIndexInfoPanel(indexName, body = {}, aliases = []) {

+ 1 - 1
apps/app/src/components/Admin/UserGroup/UserGroupTable.tsx

@@ -179,7 +179,7 @@ export const UserGroupTable: FC<Props> = ({
                 <td>
                 <td>
                   <ul className="list-inline">
                   <ul className="list-inline">
                     {users != null && users.map((user) => {
                     {users != null && users.map((user) => {
-                      return <li key={user._id} className="list-inline-item badge text-bg-warning text-dark">{user.username}</li>;
+                      return <li key={user._id} className="list-inline-item badge text-bg-warning">{user.username}</li>;
                     })}
                     })}
                   </ul>
                   </ul>
                 </td>
                 </td>