Skip to content
Snippets Groups Projects
Commit cdbce82a authored by Liliana Sanfilippo's avatar Liliana Sanfilippo
Browse files

OurLink fix

parent b17e3866
No related branches found
No related tags found
No related merge requests found
Pipeline #532711 passed
...@@ -67,7 +67,11 @@ export const useNavigation = () => { ...@@ -67,7 +67,11 @@ export const useNavigation = () => {
collapseId?: string; collapseId?: string;
tabincolId?: string; tabincolId?: string;
}) => { }) => {
let url = `${path}`; // Den vollständigen Pfad erstellen, indem wir den basePath und path kombinieren
let url = `/${path.startsWith("/") ? path.slice(1) : path}`;
let paramsAdded = false; let paramsAdded = false;
console.log("Found path: " + path) console.log("Found path: " + path)
// 1. Tab-Logik (tabId und subTabId) // 1. Tab-Logik (tabId und subTabId)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment