We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9ca2de7 + 372518f commit ae9af02Copy full SHA for ae9af02
src/routes/problems/+page.svelte
@@ -28,14 +28,15 @@
28
<Tabs tabStyle="underline" contentClass="bg-white dark:bg-gray-800">
29
<!-- Task table -->
30
<!-- WIP: UIのデザインが試行錯誤の段階であるため、管理者のみ閲覧可能 -->
31
+ <!-- TODO: 一般公開するときに、デフォルトで開くタブにする -->
32
{#if isAdmin}
- <TabItemWrapper workbookType={null} isOpen={true} title="テーブル">
33
+ <TabItemWrapper workbookType={null} title="テーブル">
34
<TaskTable {taskResults} {isLoggedIn} />
35
</TabItemWrapper>
36
{/if}
37
38
<!-- Grades -->
- <TabItemWrapper workbookType={null} title="グレード">
39
+ <TabItemWrapper workbookType={null} isOpen={true} title="グレード">
40
<TaskGradeList {taskResults} {isAdmin} {isLoggedIn}></TaskGradeList>
41
42
0 commit comments