Skip to content

Commit dcb5312

Browse files
committed
Merge tag 'v0.9.0'
Version 0.9.0
2 parents 1af93ca + 4be6ce9 commit dcb5312

File tree

62 files changed

+1568
-1176
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+1568
-1176
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,7 @@ See [how to contribute](https://github.com/eclipse-dataspaceconnector/DataSpaceC
105105
# Acknowledgements
106106

107107
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.
108+
109+
## Disclaimer
110+
111+
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)

package-lock.json

Lines changed: 16 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "inesdata-connector-interface",
3-
"version": "0.8.3",
3+
"version": "0.9.0",
44
"project": "com.gmv.inesdata",
55
"scripts": {
66
"ng": "ng",

src/app/app.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<ng-container *ngIf="(authService.isAuthenticated$ | async) as isAuthenticated">
2-
<app-navigation *ngIf="isAuthenticated" [class]="themeClass()"></app-navigation>
3-
<h2 *ngIf="!isAuthenticated" [class]="themeClass()"></h2>
2+
<app-navigation *ngIf="isAuthenticated"></app-navigation>
3+
<h2 *ngIf="!isAuthenticated"></h2>
44
</ng-container>

src/app/app.component.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export class AppComponent implements OnInit {
2020
* @param router Router service
2121
* @param titleService Title service
2222
* @param activatedRoute ActivatedRoute service
23-
* @param authService Auth service
23+
* @param authService Auth service
2424
*/
2525
constructor(
2626
private router: Router,
@@ -47,8 +47,4 @@ export class AppComponent implements OnInit {
4747
this.titleService.setTitle(title);
4848
});
4949
}
50-
51-
themeClass(): string | undefined {
52-
return environment.runtime.theme;
53-
}
5450
}

0 commit comments

Comments
 (0)