Skip to content

Commit 5bfd8d8

Browse files
committed
Make module imports local 2
1 parent 36aab96 commit 5bfd8d8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

public/callback/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { registerPipeline } from '/modules/storage.js'
1+
import { registerPipeline } from '../modules/storage.js'
22

33
const showDebugInformation = false;
44

public/dashboard/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { retrievePipeline } from "/modules/storage.js";
1+
import { retrievePipeline } from "../modules/storage.js";
22
import { BlobReader, TextWriter, ZipReader } from "https://cdn.jsdelivr.net/npm/@zip.js/[email protected]/+esm";
33

44
const showDebugInformation = false;

public/gitlab-setup/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ window.onload = async function () {
4040
localStorage.setItem("gitlab-name", userData["name"]);
4141
localStorage.setItem("gitlab-api-token", token);
4242

43-
window.location = "/";
43+
window.location = "./";
4444
return;
4545
}
4646
};

0 commit comments

Comments
 (0)