mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
show login url only if alias was already set
This commit is contained in:
parent
84b0d82f98
commit
cde38eb639
@ -62,7 +62,10 @@ const details = ref(false)
|
||||
|
||||
const emit = defineEmits(['update:item', 'deleted:item'])
|
||||
const frontendLoginUrl = computed(() => {
|
||||
return `${CONFIG.WALLET_LOGIN_URL}?project=${item.value.alias}`
|
||||
if (item.value.alias && item.value.alias.length > 0) {
|
||||
return `${CONFIG.WALLET_LOGIN_URL}?project=${item.value.alias}`
|
||||
}
|
||||
return undefined
|
||||
})
|
||||
|
||||
async function copyToClipboard(text) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user