File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/lib/components/TaskTables Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 8383 let taskTableHeaderIds: Array <string > = $derived (taskTableGenerator .getHeaderIdsForTask ());
8484 let contestIds: Array <string > = $derived (taskTableGenerator .getContestRoundIds ());
8585
86- function getTaskTableTitle(taskTable : TaskTableGenerator ): string {
87- return taskTable .getTitle () ?? ' ' ;
86+ function getTaskTableTitle(taskTableGenerator : TaskTableGenerator ): string {
87+ return taskTableGenerator .getTitle () ?? ' ' ;
8888 }
8989
90- function getContestRoundLabel(taskTable : TaskTableGenerator , contestId : string ): string {
91- return taskTable .getContestRoundLabel (contestId );
90+ function getContestRoundLabel(taskTableGenerator : TaskTableGenerator , contestId : string ): string {
91+ return taskTableGenerator .getContestRoundLabel (contestId );
9292 }
9393
9494 // FIXME: 他のコンポーネントと完全に重複しているので、コンポーネントとして切り出す。
You can’t perform that action at this time.
0 commit comments