fix Richieste e Rifiutati (Circuiti)

This commit is contained in:
Surya Paolo
2022-12-15 18:09:50 +01:00
parent fbcd076705
commit 1291ad319f
9 changed files with 19 additions and 22 deletions

View File

@@ -153,13 +153,13 @@ export default defineComponent({
function getLinkWebSite() {
if (myuser.value) {
let site = myuser.value.profile.website!
if (site) {
if (!site.startsWith('http')) {
site = 'https://' + site
let mysite = myuser.value.profile.website!
if (mysite) {
if (!mysite.startsWith('http')) {
mysite = 'https://' + mysite
}
}
return site
return mysite
} else {
return ''
}