From 10d41cd6ee668a30bf7713b165092f0222a8bbcb Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 21 Apr 2021 13:02:31 +0200 Subject: [PATCH] Web check-in: Better message for exit --- .../static/pretixplugins/webcheckin/components/app.vue | 3 +++ 1 file changed, 3 insertions(+) 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 93a1c17d99..fff5c034de 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']