Skip to content

Commit ed2badd

Browse files
committed
:chore: Fix default tab in problems page (#1675)
1 parent 9ca2de7 commit ed2badd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/routes/problems/+page.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@
2929
<!-- Task table -->
3030
<!-- WIP: UIのデザインが試行錯誤の段階であるため、管理者のみ閲覧可能 -->
3131
{#if isAdmin}
32-
<TabItemWrapper workbookType={null} isOpen={true} title="テーブル">
32+
<TabItemWrapper workbookType={null} title="テーブル">
3333
<TaskTable {taskResults} {isLoggedIn} />
3434
</TabItemWrapper>
3535
{/if}
3636

3737
<!-- Grades -->
38-
<TabItemWrapper workbookType={null} title="グレード">
38+
<TabItemWrapper workbookType={null} isOpen={true} title="グレード">
3939
<TaskGradeList {taskResults} {isAdmin} {isLoggedIn}></TaskGradeList>
4040
</TabItemWrapper>
4141

0 commit comments

Comments
 (0)