Skip to content

Commit bdd7ee4

Browse files
committed
Remove incorrect icon from ServerTable
1 parent 3734afb commit bdd7ee4

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

Plan/react/dashboard/src/components/table/ServersTable.jsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ import {
1111
faSortAlphaUp,
1212
faSortNumericDown,
1313
faSortNumericUp,
14-
faUser,
15-
faUsers
14+
faUser
1615
} from "@fortawesome/free-solid-svg-icons";
1716
import {useTheme} from "../../hooks/themeHook.tsx";
1817
import {useTranslation} from "react-i18next";
@@ -201,8 +200,7 @@ const ServersTable = ({servers, onSelect, sortBy, sortReversed}) => {
201200
<tr>
202201
<th><Fa icon={faServer}/> {t('html.label.server')}</th>
203202
<th><Fa icon={faLineChart}/> {t('html.label.serverAnalysis')}</th>
204-
<th><Fa
205-
icon={faUsers}/> {t(sortedBy.data ? sortedBy.label : ServerSortOption.REGISTERED_PLAYERS.label)}
203+
<th>{t(sortedBy.data ? sortedBy.label : ServerSortOption.REGISTERED_PLAYERS.label)}
206204
</th>
207205
<th><Fa icon={faUser}/> {t('html.label.playersOnline')}</th>
208206
<th></th>

0 commit comments

Comments
 (0)