Skip to content

Commit

Permalink
Merge tag 'v0.9.0'
Browse files Browse the repository at this point in the history
Version 0.9.0
  • Loading branch information
ppel-gmv committed Jan 14, 2025
2 parents 1af93ca + 4be6ce9 commit dcb5312
Show file tree
Hide file tree
Showing 62 changed files with 1,568 additions and 1,176 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,7 @@ See [how to contribute](https://github.com/eclipse-dataspaceconnector/DataSpaceC
# Acknowledgements

INESData (https://inesdata-project.eu/) is a Spanish Incubator of Data Spaces and AI Services using federated infrastructures in the Cloud. It focuses on simplifying the tech adoption and accelerating the industry deployment of the national Data Space ecosystem by contributing with four Data Spaces (language, mobility, legal and public tender, and media) to demonstrate the benefits of Data Spaces and applicability of the related technology. It is funded by the Spanish Ministry of Digital Transformation and NextGenerationEU, in the framework of the UNICO I+D CLOUD Program - Real Decreto 959/2022.

## Disclaimer

Este trabajo ha recibido financiación del proyecto INESData (Infraestructura para la INvestigación de ESpacios de DAtos distribuidos en UPM), un proyecto financiado en el contexto de la convocatoria UNICO I+D CLOUD del Ministerio para la Transformación Digital y de la Función Pública en el marco del PRTR financiado por Unión Europea (NextGenerationEU)
28 changes: 16 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "inesdata-connector-interface",
"version": "0.8.3",
"version": "0.9.0",
"project": "com.gmv.inesdata",
"scripts": {
"ng": "ng",
Expand Down
4 changes: 2 additions & 2 deletions src/app/app.component.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<ng-container *ngIf="(authService.isAuthenticated$ | async) as isAuthenticated">
<app-navigation *ngIf="isAuthenticated" [class]="themeClass()"></app-navigation>
<h2 *ngIf="!isAuthenticated" [class]="themeClass()"></h2>
<app-navigation *ngIf="isAuthenticated"></app-navigation>
<h2 *ngIf="!isAuthenticated"></h2>
</ng-container>
6 changes: 1 addition & 5 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class AppComponent implements OnInit {
* @param router Router service
* @param titleService Title service
* @param activatedRoute ActivatedRoute service
* @param authService Auth service
* @param authService Auth service
*/
constructor(
private router: Router,
Expand All @@ -47,8 +47,4 @@ export class AppComponent implements OnInit {
this.titleService.setTitle(title);
});
}

themeClass(): string | undefined {
return environment.runtime.theme;
}
}
Loading

0 comments on commit dcb5312

Please sign in to comment.