File tree Expand file tree Collapse file tree 4 files changed +9
-2
lines changed
shared/components/resource-card Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 22
33We 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+
51026.2.0 (2026-01-29)
611===================
712
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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 "
You can’t perform that action at this time.
0 commit comments