fix: show current host if configured api url is /api/v1 instead of "" (#994)
Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/994 Reviewed-by: dpschen <dpschen@noreply.kolaente.de> Co-authored-by: konrad <k@knt.li> Co-committed-by: konrad <k@knt.li>
This commit is contained in:
parent
e63fd587c8
commit
31f344503c
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ export default {
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
apiDomain() {
|
apiDomain() {
|
||||||
return parseURL(this.apiUrl).host
|
return parseURL(this.apiUrl).host || parseURL(window.location.href).host
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
|
|
Loading…
Reference in a new issue