diff --git a/docs/features/input-prompts.md b/docs/features/input-prompts.md index c2b80de6..81979034 100644 --- a/docs/features/input-prompts.md +++ b/docs/features/input-prompts.md @@ -19,7 +19,7 @@ The input legend is an always-on list of input prompts at the bottom of the scre Individual input prompts appear in various relevant bits of the UI: -![Input prompts](./input-prompts/input-prompts.webp) +![Input prompt](./input-prompts/input-prompt.webp) ## Configuration diff --git a/packages/narrat/src/components/game-dialog.vue b/packages/narrat/src/components/game-dialog.vue index 7efc6935..9c5204c8 100644 --- a/packages/narrat/src/components/game-dialog.vue +++ b/packages/narrat/src/components/game-dialog.vue @@ -120,7 +120,11 @@ const dialogContainerStyle = computed((): any => { const lastDialog = computed((): DialogKey | undefined => { if (dialog.value.length > 0) { - return dialog.value[dialog.value.length - 1]; + const result = dialog.value[dialog.value.length - 1]; + if (dialogStore.isDialogCleared(dialog.value.length - 1)) { + return undefined; + } + return result; } return undefined; });