Skip to content

Commit

Permalink
Fix?
Browse files Browse the repository at this point in the history
Fix
  • Loading branch information
guerler committed Feb 18, 2024
1 parent ce8b99c commit 5e13058
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions client/src/components/Grid/GridHistory.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ withDefaults(defineProps<Props>(), {
</script>

<template>
<div>
<div class="d-flex flex-column">
<div class="mb-2">
<div class="d-flex">
<Heading h1 separator inline size="xl" class="flex-grow-1 mb-2">Histories</Heading>
Expand All @@ -40,9 +40,9 @@ withDefaults(defineProps<Props>(), {
Public Histories
</BNavItem>
</BNav>
<GridList v-if="activeList === 'my'" :grid-config="historiesGridConfig" embedded />
<GridList v-else-if="activeList === 'shared'" :grid-config="historiesSharedGridConfig" embedded />
<GridList v-else :grid-config="historiesPublishedGridConfig" embedded />
</div>
<GridList v-if="activeList === 'my'" :grid-config="historiesGridConfig" embedded />
<GridList v-else-if="activeList === 'shared'" :grid-config="historiesSharedGridConfig" embedded />
<GridList v-else :grid-config="historiesPublishedGridConfig" embedded />
</div>
</template>

0 comments on commit 5e13058

Please sign in to comment.