Skip to content

Commit

Permalink
[beta] Fix numerical gallery images typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
DIDIRUS4 committed Dec 30, 2023
1 parent 4b25f78 commit df5822f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion theseus_gui/src/components/ui/tutorial/GalleryImage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const image = computed(() => props.gallery[page.value - 1])
<Button :disabled="page === 1" class="left-button" icon-only @click="page--">
<ChevronLeftIcon />
</Button>
<Button :disabled="page === 9" class="right-button" icon-only @click="page++">
<Button :disabled="page === 10" class="right-button" icon-only @click="page++">
<ChevronRightIcon />
</Button>
</div>
Expand Down

0 comments on commit df5822f

Please sign in to comment.