diff --git a/components/UserProfile.ce.vue b/components/UserProfile.ce.vue index c470f9df3..63fd553d1 100644 --- a/components/UserProfile.ce.vue +++ b/components/UserProfile.ce.vue @@ -24,7 +24,7 @@ const toggleDropdown = useToggle(dropdownOpen); onClickOutside(dropdown, (_event) => dropdownOpen.value = false); const serverStore = useServerStore(); -const { name, description, guid, lanIp, uptime, expireTime, state } = storeToRefs(serverStore); +const { name, description, lanIp, uptime, expireTime, state } = storeToRefs(serverStore); const uptimeOrExpiredTime = computed(() => { return (state.value === 'TRIAL' || state.value === 'EEXPIRED') && expireTime.value && expireTime.value > 0 @@ -72,10 +72,10 @@ onBeforeMount(() => { - - {{ 'LAN IP Copied' }} - - LAN IP: {{ lanIp }} + + + + diff --git a/components/UserProfile/Dropdown.vue b/components/UserProfile/Dropdown.vue index 3be0fd813..88ed54d43 100644 --- a/components/UserProfile/Dropdown.vue +++ b/components/UserProfile/Dropdown.vue @@ -1,6 +1,6 @@ diff --git a/store/server.ts b/store/server.ts index 184a2ce08..64f2a97dd 100644 --- a/store/server.ts +++ b/store/server.ts @@ -65,18 +65,21 @@ export const useServerStore = defineStore('server', () => { actions: [ { click: () => { console.debug('signIn') }, + external: true, icon: GlobeAltIcon, name: 'signIn', text: 'Sign In with Unraid.net Account', }, { click: () => { console.debug('purchase') }, + external: true, icon: KeyIcon, name: 'purchase', text: 'Purchase Key', }, // { // click: () => { console.debug('signOut') }, + // external: true, // icon: ArrowRightOnRectangleIcon, // name: 'signOut', // text: 'signOut',