@for (node of treeData(); track node.id) {
@@ -17,7 +19,7 @@
@@ -34,13 +36,16 @@
}
-
+
{{ node.title }}
+
+
+
}
diff --git a/src/app/features/about-display/neural-profile-tree/neural-profile-tree.component.ts b/src/app/features/about-display/neural-profile-tree/neural-profile-tree.component.ts
index e522a05..c37606b 100644
--- a/src/app/features/about-display/neural-profile-tree/neural-profile-tree.component.ts
+++ b/src/app/features/about-display/neural-profile-tree/neural-profile-tree.component.ts
@@ -17,7 +17,7 @@ export interface NeuralProfileNode {
standalone: true,
imports: [CommonModule],
templateUrl: './neural-profile-tree.component.html',
- styles: [],
+ styleUrl: './neural-profile-tree.component.css',
})
export class NeuralProfileTreeComponent {
// Input for external data (optional)
@@ -32,8 +32,8 @@ export class NeuralProfileTreeComponent {
private getInitialData(): NeuralProfileNode[] {
return [
{
- id: 'neuralProfile',
- title: ':TECH_CORE ',
+ id: 'workstation',
+ title: 'Workstation/',
isExpanded: true,
isSelected: false,
level: 0,
diff --git a/src/app/features/header-display/header-contact-links/header-contact-links.component.spec.ts b/src/app/features/header-display/header-contact-links/header-contact-links.component.spec.ts
deleted file mode 100644
index 6a3df31..0000000
--- a/src/app/features/header-display/header-contact-links/header-contact-links.component.spec.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { HeaderContactLinksComponent } from './header-contact-links.component';
-
-describe('HeaderContactLinksComponent', () => {
- let component: HeaderContactLinksComponent;
- let fixture: ComponentFixture
;
-
- beforeEach(async () => {
- await TestBed.configureTestingModule({
- imports: [HeaderContactLinksComponent]
- })
- .compileComponents();
-
- fixture = TestBed.createComponent(HeaderContactLinksComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
-
- it('should create', () => {
- expect(component).toBeTruthy();
- });
-});