Skip to content

Commit 912918c

Browse files
committed
Correct paths 2
1 parent 0f97c18 commit 912918c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

public/callback/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ window.onload = async function () {
2424

2525
const token = localStorage.getItem("gitlab-api-token");
2626
if (token) {
27-
window.location = "../dashboard/";
27+
window.location = "/software-card/dashboard/";
2828
return;
2929
} else {
3030
alert("Please set up the GitLab connection, then go to the dashboard!");
31-
window.location = "../gitlab-setup/";
31+
window.location = "/software-card/gitlab-setup/";
3232
return;
3333
}
3434
}

public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77

88
<link rel="stylesheet" href="/software-card/style.css">
9-
<link rel="icon" href="../pictures/Logo.png" type="image/icon type">
9+
<link rel="icon" href="./pictures/Logo.png" type="image/icon type">
1010

1111
<script type="module" src="./main.js"></script>
1212

0 commit comments

Comments
 (0)