Skip to content

Commit add8949

Browse files
committed
Fix missing space on page headers
Resolves #2748
1 parent eb9c967 commit add8949

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Unreleased
22

3+
### Bug Fixes
4+
5+
- Fixed missing space on page headers, #2748.
6+
37
## v0.26.9 (2024-10-11)
48

59
### Features

src/lib/output/themes/default/partials/header.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const header = (context: DefaultThemeRenderContext, props: PageEvent<Refl
2626
renderTitle = opts.document;
2727
} else {
2828
renderTitle = true;
29-
titleKindString = " " + context.internationalization.kindSingularString(props.model.kind);
29+
titleKindString = context.internationalization.kindSingularString(props.model.kind) + " ";
3030
}
3131

3232
return (

0 commit comments

Comments
 (0)