Skip to content

Commit d92ff04

Browse files
committed
Merge branch 'hotfix/26.2.1'
2 parents 065fb94 + a938fe4 commit d92ff04

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
We follow the CalVer (https://calver.org/) versioning scheme: YY.MINOR.MICRO.
44

5+
26.2.1 (2026-02-03)
6+
===================
7+
8+
* Hotfix for navigation translations and contributor search
9+
510
26.2.0 (2026-01-29)
611
===================
712

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "osf",
3-
"version": "26.2.0",
3+
"version": "26.2.1",
44
"scripts": {
55
"ng": "ng",
66
"analyze-bundle": "ng build --configuration=analyze-bundle && source-map-explorer dist/**/*.js --no-border-checks",

src/app/core/components/nav-menu/nav-menu.component.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,12 @@ export class NavMenuComponent {
4444
private readonly isAuthenticated = select(UserSelectors.isAuthenticated);
4545
private readonly currentResource = select(CurrentResourceSelectors.getCurrentResource);
4646
private readonly provider = select(ProviderSelectors.getCurrentProvider);
47+
private readonly translationsReady = toSignal(this.translateService.stream('navigation.overview'));
4748

4849
readonly actions = createDispatchMap({ getResourceDetails: GetResourceDetails });
4950

5051
readonly mainMenuItems = computed(() => {
52+
this.translationsReady();
5153
const isAuthenticated = this.isAuthenticated();
5254
const filtered = filterMenuItems(MENU_ITEMS, isAuthenticated);
5355

src/app/shared/components/resource-card/resource-card.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ <h2>
3535
<div class="line-height-3">
3636
@for (affiliatedEntity of affiliatedEntities().slice(0, limit); track $index) {
3737
<a
38-
class="word-break-word block line-height-4"
38+
class="word-break-word line-height-4"
3939
[href]="affiliatedEntity.absoluteUrl"
4040
target="_blank"
4141
rel="noopener noreferrer"

0 commit comments

Comments
 (0)