Fix naming
This commit is contained in:
parent
7d5fd5cff6
commit
1d66cc86be
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue