diff --git a/frontend/src/components/Node/NodeInstallation.vue b/frontend/src/components/Node/NodeInstallation.vue index 1ec9894a..9ed3cfc1 100644 --- a/frontend/src/components/Node/NodeInstallation.vue +++ b/frontend/src/components/Node/NodeInstallation.vue @@ -3,13 +3,13 @@ {{$t('Search')}} @@ -116,7 +116,7 @@ export default { depName: '', depList: [], loading: false, - isShowInstalled: false, + isShowInstalled: true, installedDepList: [], depLoadingDict: {}, isLoadingInstallLang: false @@ -289,6 +289,7 @@ export default { const res = await this.$request.get(`/nodes/${id}/langs`) this.langList = res.data.data this.activeTab = this.langList[0].executable_name || '' + await this.getInstalledDepList() } }