hl-core 0.0.8-beta.33 → 0.0.8-beta.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<v-text-field v-model="$dataStore.user.fullName" :readonly="true" hide-details variant="plain" :label="$dataStore.user.roles?.join(', ')"></v-text-field>
|
|
10
10
|
<i class="mdi mdi-account-outline text-2xl text-[#A0B3D8]"></i
|
|
11
11
|
></base-panel-item>
|
|
12
|
-
<base-panel-item v-if="$dataStore.isEFO" @click="changeBridge('lka')" class="cursor-pointer">
|
|
12
|
+
<base-panel-item v-if="$dataStore.isEFO && !isProduction" @click="changeBridge('lka')" class="cursor-pointer">
|
|
13
13
|
{{ $t('labels.lkaLong') }}
|
|
14
14
|
<i class="mdi mdi-chevron-right text-2xl text-[#A0B3D8]"></i
|
|
15
15
|
></base-panel-item>
|
|
@@ -62,6 +62,8 @@ const logoutUser = async () => {
|
|
|
62
62
|
await dataStore.logoutUser();
|
|
63
63
|
};
|
|
64
64
|
|
|
65
|
+
const isProduction = import.meta.env.VITE_MODE === 'production';
|
|
66
|
+
|
|
65
67
|
const hasHistory = computed(() => {
|
|
66
68
|
return !dataStore.isLKA;
|
|
67
69
|
});
|