Skip to content

Commit

Permalink
history: fix table style
Browse files Browse the repository at this point in the history
  • Loading branch information
maldestor95 committed May 20, 2024
1 parent 6301785 commit 69a0943
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/pages/wizard/history.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<button @click="setGraph = 'table'">Table</button>
<button @click="setGraph = 'cumulative'">cumulative</button>
</div>
<container
class="grid grid-cols-[56px_1fr] overflow-y-auto max-h-[300px]"
<div
class="container grid grid-cols-[56px_1fr] overflow-y-auto max-h-[300px]"
v-if="setGraph == 'table'"
>
<div class="font-semibold">
Expand All @@ -26,14 +26,13 @@
</div>
</div>
</div>
</container>
</div>
<historychart :graph-type="setGraph"></historychart>
</div>
</template>

<script setup lang="ts">
import { useScoreStore } from "./store";
import container from "../../components/container.vue";
import historychart from "./historychart.vue";
import { ref } from "vue";
Expand Down

0 comments on commit 69a0943

Please sign in to comment.