Skip to content

Commit 35d9503

Browse files
committed
Merge branch 'feature/449972_maquetacion' into 'develop'
feature/449972_maquetacion See merge request upm-inesdata/inesdata-connector-interface!42
2 parents 80355c5 + 7b2d472 commit 35d9503

File tree

61 files changed

+1565
-1173
lines changed

Some content is hidden

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

61 files changed

+1565
-1173
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: 14 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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)