Skip to content

Commit a25a810

Browse files
authored
Update column order of user statistics table (#4078)
1 parent d341163 commit a25a810

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/Statistics/UserStatistics.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,17 @@ export default function UserStatistics(): ReactElement {
4141
<TableHead>
4242
<TableRow>
4343
<HeadCell titleId={"statistics.column.username"} />
44-
<HeadCell titleId={"statistics.column.recentDomain"} />
45-
<HeadCell titleId={"statistics.column.domainCount"} />
4644
<HeadCell titleId={"statistics.column.senseCount"} />
45+
<HeadCell titleId={"statistics.column.domainCount"} />
46+
<HeadCell titleId={"statistics.column.recentDomain"} />
4747
</TableRow>
4848
</TableHead>
4949
<TableBody>
5050
{domainUserCountList.map((t) => (
5151
<TableRow key={t.id}>
5252
<Cell text={t.username} />
53+
<Cell text={t.wordCount} />
54+
<Cell text={t.domainCount} />
5355
<Cell
5456
body={
5557
t.recentDomain ? (
@@ -60,8 +62,6 @@ export default function UserStatistics(): ReactElement {
6062
) : null
6163
}
6264
/>
63-
<Cell text={t.domainCount} />
64-
<Cell text={t.wordCount} />
6565
</TableRow>
6666
))}
6767
</TableBody>

0 commit comments

Comments
 (0)