+
+ {{ this.$t('xpack.ImportLicenseTip') }}
+
@@ -83,6 +86,9 @@ export default {
...mapGetters([
'publicSettings'
]),
+ isValidateLicense() {
+ return this.publicSettings.XPACK_LICENSE_IS_VALID
+ },
cardTitle() {
return ''
},
@@ -136,8 +142,6 @@ export default {
]
}
},
- mounted() {
- },
methods: {
handleButtonAction: function(index, row) {
switch (row.value) {
diff --git a/src/views/xpack/router.js b/src/views/xpack/router.js
index 4b06c43ed..8b80db343 100644
--- a/src/views/xpack/router.js
+++ b/src/views/xpack/router.js
@@ -18,7 +18,7 @@ export default {
path: 'license',
component: () => import('@/views/xpack/License.vue'),
name: 'License',
- meta: { title: 'License' }
+ meta: { title: i18n.t('xpack.License') }
},
{
path: 'gathered-users',