- + + + + {{ $tr('emptyTopicText') }}
@@ -291,6 +297,7 @@ }, data() { return { + isLoadingchild: false, isLoading: true, displaySummaryDetailsDialog: false, displayDeployDialog: false, @@ -387,8 +394,14 @@ watch: { nodeId(newNodeId) { this.elevated = false; - this.loadAncestors({ id: newNodeId }); - this.loadChildren({ parent: newNodeId, root_id: this.stagingId }); + this.isLoadingchild = true; + + Promise.all([ + this.loadAncestors({ id: newNodeId }), + this.loadChildren({ parent: newNodeId, root_id: this.stagingId }), + ]).then(() => { + this.isLoadingchild = false; + }); }, detailNodeId(newDetailNodeId) { if (!newDetailNodeId) {