Skip to content

Commit 8dd4933

Browse files
committed
♻️ Rename (#1644)
1 parent 4813c7e commit 8dd4933

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lib/components/TaskTables/TaskTable.svelte

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@
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: 他のコンポーネントと完全に重複しているので、コンポーネントとして切り出す。

0 commit comments

Comments
 (0)