Enterprise UI redesign — Phases 14–22 (Docusign-branded migration console) #1

Merged
paulh merged 24 commits from ui-redesign into master 2026-04-21 15:30:44 -05:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit e521fd8e58 - Show all commits

View File

@ -34,7 +34,7 @@ function parseHash(hash) {
const clean = hash || '#/templates';
const parts = clean.split('/');
if (parts.length >= 3) {
return { base: parts.slice(0, 3).join('/'), param: parts[3] || null };
return { base: parts.slice(0, 2).join('/'), param: parts.slice(2).join('/') };
}
return { base: clean, param: null };
}