aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/views/RepositoryLog.vue
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2021-05-24 13:30:42 +0200
committerHampusM <hampus@hampusmat.com>2021-05-24 13:30:42 +0200
commit0c23beadccfda6c6e2d6380244fbe49f5bfee139 (patch)
tree6e0d8654a0097427808d2f5deba530b6a9e8294d /src/frontend/views/RepositoryLog.vue
parent6ae79f6bd3f7eaeae0d707889ce8d2c1c32c3ba9 (diff)
API calls uses window.location
Diffstat (limited to 'src/frontend/views/RepositoryLog.vue')
-rw-r--r--src/frontend/views/RepositoryLog.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/views/RepositoryLog.vue b/src/frontend/views/RepositoryLog.vue
index 399fc78..42a9780 100644
--- a/src/frontend/views/RepositoryLog.vue
+++ b/src/frontend/views/RepositoryLog.vue
@@ -75,7 +75,7 @@ export default {
watch(() =>
{
- fetch(`http://localhost:1337/api/v1/repos/${props.repository}/log`)
+ fetch(`${window.location.protocol}//${window.location.host}/api/v1/repos/${props.repository}/log`)
.then((res) => res.json())
.then((data) => {
state.commits = data["data"];