Fix naming

This commit is contained in:
Ramon Wenger 2021-07-07 16:02:12 +02:00
parent 7d5fd5cff6
commit 1d66cc86be
1 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@
:user-input="userInput"
:shared-msg="sharedMsg"
:show-reopen="!readOnly"
v-if="isReadOnly"
v-if="isFinalOrReadOnly"
@reopen="$emit('reopen')"/>
</div>
</template>
@ -91,7 +91,7 @@
final() {
return !!this.userInput && this.userInput.final;
},
isReadOnly() {
isFinalOrReadOnly() {
return this.final || this.readOnly;
},
allowsDocuments() {