Fixed error with call service for list document statuses when a record is new (#430)
parent
8779ff2441
commit
80f62e6fdd
|
@ -639,7 +639,7 @@ export default {
|
||||||
return groupsList
|
return groupsList
|
||||||
},
|
},
|
||||||
setTagsViewTitle(actionValue) {
|
setTagsViewTitle(actionValue) {
|
||||||
if (this.getterPanel.isDocument && this.getterDataStore.isLoaded) {
|
if (actionValue !== 'create-new' && !this.isEmptyValue(actionValue) && this.getterPanel.isDocument && this.getterDataStore.isLoaded) {
|
||||||
this.$store.dispatch('listWorkflows', this.metadata.tableName)
|
this.$store.dispatch('listWorkflows', this.metadata.tableName)
|
||||||
this.$store.dispatch('listDocumentStatus', {
|
this.$store.dispatch('listDocumentStatus', {
|
||||||
recordUuid: this.$route.query.action,
|
recordUuid: this.$route.query.action,
|
||||||
|
|
Loading…
Reference in New Issue