diff --git a/src/pretix/plugins/webcheckin/static/pretixplugins/webcheckin/components/app.vue b/src/pretix/plugins/webcheckin/static/pretixplugins/webcheckin/components/app.vue index 93a1c17d9..fff5c034d 100644 --- a/src/pretix/plugins/webcheckin/static/pretixplugins/webcheckin/components/app.vue +++ b/src/pretix/plugins/webcheckin/static/pretixplugins/webcheckin/components/app.vue @@ -262,6 +262,9 @@ export default { checkResultText () { if (!this.checkResult) return '' if (this.checkResult.status === 'ok') { + if (this.type === "exit") { + return this.$root.strings['result.exit'] + } return this.$root.strings['result.ok'] } else if (this.checkResult.status === 'incomplete') { return this.$root.strings['result.questions']