We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d736879 commit 65194ddCopy full SHA for 65194dd
frontend/src/components/standings/StandingsTable.tsx
@@ -291,7 +291,7 @@ function TeamProblemCol({
291
let status;
292
let content;
293
if (solved) {
294
- status = (siteconfig.features.firstAc && isFirst) ? 'solved-first' : 'solved';
+ status = siteconfig.features.firstAc && isFirst ? 'solved-first' : 'solved';
295
const hour = Math.floor(penalty / 60 / 60);
296
const minute = Math.floor(penalty / 60) % 60;
297
const second = Math.floor(penalty) % 60;
0 commit comments