Skip to content

Commit

Permalink
Fix missing space on page headers
Browse files Browse the repository at this point in the history
Resolves #2748
  • Loading branch information
Gerrit0 committed Oct 16, 2024
1 parent eb9c967 commit add8949
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Unreleased

### Bug Fixes

- Fixed missing space on page headers, #2748.

## v0.26.9 (2024-10-11)

### Features
Expand Down
2 changes: 1 addition & 1 deletion src/lib/output/themes/default/partials/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const header = (context: DefaultThemeRenderContext, props: PageEvent<Refl
renderTitle = opts.document;
} else {
renderTitle = true;
titleKindString = " " + context.internationalization.kindSingularString(props.model.kind);
titleKindString = context.internationalization.kindSingularString(props.model.kind) + " ";
}

return (
Expand Down

0 comments on commit add8949

Please sign in to comment.