diff --git a/src/components/specific_challenge/AllEntries/AllEntries.js b/src/components/specific_challenge/AllEntries/AllEntries.js
index 5050fc1..3b6a417 100644
--- a/src/components/specific_challenge/AllEntries/AllEntries.js
+++ b/src/components/specific_challenge/AllEntries/AllEntries.js
@@ -6,6 +6,7 @@ import { H2 } from '../../../utils/fonts';
import {
CALC_PAGES,
EVALUATIONS_FORMAT,
+ IS_MOBILE,
RENDER_WHEN,
} from '../../../utils/globals';
import Loading from '../../generic/Loading';
@@ -55,10 +56,11 @@ const AllEntries = (props) => {
const getAllEntriesHeader = () => {
let header = ['#', 'submitter'];
+ if (IS_MOBILE()) header.push('when');
for (let metric of getPossibleMetrics()) {
header.push(metric);
}
- header.push('when');
+ if (!IS_MOBILE()) header.push('when');
return header;
};
@@ -147,7 +149,52 @@ const AllEntries = (props) => {
};
const mobileRender = () => {
- return <>>;
+ return (
+
+ All Entries
+
+ {!loading ? (
+ <>
+
+