diff --git a/src/components/DxpUserProfile.vue b/src/components/DxpUserProfile.vue
index 50cfdf8..b5b423f 100644
--- a/src/components/DxpUserProfile.vue
+++ b/src/components/DxpUserProfile.vue
@@ -13,9 +13,9 @@
{{ userProfile.partyName }}
- {{ profileButtonsText.logoutText }}
+ {{ logoutLabel }}
- {{ profileButtonsText.launchpadText }}
+ {{ goToLabel }}
@@ -42,7 +42,7 @@ declare let process: any;
const appState = appContext.config.globalProperties.$store;
-defineProps(['userProfile', 'profileButtonsText']);
+defineProps(['userProfile', 'logoutLabel', 'goToLabel']);
const emit = defineEmits(['before-logout']);
const appLoginUrl = process.env.VUE_APP_LOGIN_URL;
@@ -59,4 +59,11 @@ const logout = () => {
const goToLaunchpad = () => {
window.location.href = appLoginUrl;
}
-
\ No newline at end of file
+
+
+
\ No newline at end of file