Skip to content

Commit

Permalink
Merge branch 'development' of https://github.com/ubiquity/work.ubq.fi
Browse files Browse the repository at this point in the history
…into fix-alignment
  • Loading branch information
zugdev committed Dec 4, 2024
2 parents d748779 + ad9333c commit 0580501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/home/rendering/render-org-header.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ export function renderOrgHeaderLabel(orgName: string): void {

// Update the organization name inside the span with class 'full'
const orgNameSpan = brandingDiv.querySelector("span.full");
if (orgNameSpan) orgNameSpan.textContent = `${orgName} | `;
if (orgNameSpan) orgNameSpan.textContent = `${orgName.replace(/-/g, " ")} | `;
}

0 comments on commit 0580501

Please sign in to comment.