mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-01-01 07:06:21 +01:00
fix
This commit is contained in:
parent
633dd82475
commit
c2ecfd8d35
1 changed files with 1 additions and 1 deletions
|
@ -208,7 +208,7 @@ const page = ref(props.initialPage ?? 0);
|
|||
|
||||
const currentPageDef = computed(() => {
|
||||
if (page.value > 0 && page.value < MAX_PAGE - 1) {
|
||||
return tutorialBodyPagesDef[page.value - 1];
|
||||
return tutorialBodyPagesDef[page.value - 1] ?? null;
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue