Web check-in: Better message for exit

This commit is contained in:
Raphael Michel
2021-04-21 13:02:31 +02:00
parent 99bc133540
commit 10d41cd6ee

View File

@@ -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']