From 5d79bf3fe8f3db3f645b2099c573a17769138a90 Mon Sep 17 00:00:00 2001 From: marvzhang Date: Wed, 11 Mar 2020 10:48:53 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=AE=89=E8=A3=85=E5=90=8D?= =?UTF-8?q?=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/Node/NodeInstallationMatrix.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/Node/NodeInstallationMatrix.vue b/frontend/src/components/Node/NodeInstallationMatrix.vue index ea649bca..8c628914 100644 --- a/frontend/src/components/Node/NodeInstallationMatrix.vue +++ b/frontend/src/components/Node/NodeInstallationMatrix.vue @@ -362,13 +362,13 @@ export default { if (!data || data.error) { this.$notify.error({ title: this.$t('Installing dependency failed'), - message: this.$t('The dependency installation is unsuccessful: ') + name + message: this.$t('The dependency installation is unsuccessful: ') + dep.name }) this.$set(this.depsDataDict, key, 'uninstalled') } else { this.$notify.success({ title: this.$t('Installing dependency successful'), - message: this.$t('You have successfully installed a dependency: ') + name + message: this.$t('You have successfully installed a dependency: ') + dep.name }) this.$set(this.depsDataDict, key, 'installed') }