Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions MyMusicClientSveltePwa/src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ body {
}
}

.cursor {
cursor: default;
}
.cursor {
cursor: default;
}
4 changes: 2 additions & 2 deletions MyMusicClientSveltePwa/src/lib/scripts/routeService.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const NotFoundRoutePath = "/404";
const NotFoundPathName = "404";


export let pathName = writable("Home");
export let pathName = writable("home");
export let component = writable(componentsPathMap.get(`/${pathName}`));
export let componentParams = writable(getSearchParameters());

Expand All @@ -39,7 +39,7 @@ export function initializeRouteService() {
componentParams.set(parameters);

if (path === "/") {
path = "/Home";
path = "/home";
}

pathName.set(path.split("/")[1]);
Expand Down