Skip to content

Commit cfb64cf

Browse files
committed
chore: Fix style (#3007)
1 parent e851d50 commit cfb64cf

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/lib/utils/contest_table_provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,7 @@ export class JOISecondQualRound2020OnwardsProvider extends ContestTableProviderB
865865
isShownHeader: true,
866866
isShownRoundLabel: true,
867867
isShownTaskIndex: false,
868-
tableBodyCellsWidth: 'w-1/2 xs:w-1/3 sm:w-1/4 md:w-1/5 px-1 py-1',
868+
tableBodyCellsWidth: 'w-1/2 xs:w-1/3 sm:w-1/4 md:w-1/5 lg:w-1/6 px-1 py-1',
869869
roundLabelWidth: 'xl:w-28',
870870
};
871871
}

src/test/lib/utils/contest_table_provider.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2267,7 +2267,9 @@ describe('ContestTableProviderBase and implementations', () => {
22672267
expect(displayConfig.isShownRoundLabel).toBe(true);
22682268
expect(displayConfig.isShownTaskIndex).toBe(false);
22692269
expect(displayConfig.roundLabelWidth).toBe('xl:w-28');
2270-
expect(displayConfig.tableBodyCellsWidth).toBe('w-1/2 xs:w-1/3 sm:w-1/4 md:w-1/5 px-1 py-1');
2270+
expect(displayConfig.tableBodyCellsWidth).toBe(
2271+
'w-1/2 xs:w-1/3 sm:w-1/4 md:w-1/5 lg:w-1/6 px-1 py-1',
2272+
);
22712273
});
22722274

22732275
test('expects to get contest round label', () => {

0 commit comments

Comments
 (0)