File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/components/Statistics Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments