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