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