Fixed error with document action list component population (#439)
parent
8d0fcc04f9
commit
8a792e1803
|
@ -101,6 +101,7 @@ export default {
|
||||||
if (!this.withoutRecord && this.$route.query.action !== this.documentActions.recordUuid) {
|
if (!this.withoutRecord && this.$route.query.action !== this.documentActions.recordUuid) {
|
||||||
this.$store.dispatch('listDocumentActionStatus', {
|
this.$store.dispatch('listDocumentActionStatus', {
|
||||||
recordUuid: this.$route.query.action,
|
recordUuid: this.$route.query.action,
|
||||||
|
tableName: this.$route.params.tableName,
|
||||||
recordId: this.$route.params.recordId
|
recordId: this.$route.params.recordId
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -170,6 +170,7 @@ export default {
|
||||||
if (!this.withoutRecord && this.$route.query.action !== this.documentActions.recordUuid) {
|
if (!this.withoutRecord && this.$route.query.action !== this.documentActions.recordUuid) {
|
||||||
this.$store.dispatch('listDocumentActionStatus', {
|
this.$store.dispatch('listDocumentActionStatus', {
|
||||||
recordUuid: this.$route.query.action,
|
recordUuid: this.$route.query.action,
|
||||||
|
tableName: this.$route.params.tableName,
|
||||||
recordId: this.$route.params.recordId
|
recordId: this.$route.params.recordId
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue