diff --git a/projects/planner/src/app/diff/tabs/diff-tabs.component.html b/projects/planner/src/app/diff/tabs/diff-tabs.component.html index d93f367f..4c9891d6 100644 --- a/projects/planner/src/app/diff/tabs/diff-tabs.component.html +++ b/projects/planner/src/app/diff/tabs/diff-tabs.component.html @@ -1,3 +1,3 @@
diff --git a/projects/planner/src/app/diff/tabs/profile-button/diff-tabs-button.component.html b/projects/planner/src/app/diff/tabs/profile-button/diff-tabs-button.component.html index 7a2cd7ef..240d8015 100644 --- a/projects/planner/src/app/diff/tabs/profile-button/diff-tabs-button.component.html +++ b/projects/planner/src/app/diff/tabs/profile-button/diff-tabs-button.component.html @@ -10,5 +10,5 @@ + for="{{'btn-check-' + this.index}}">{{this.title}} diff --git a/projects/planner/src/app/diff/tabs/profile-button/diff-tabs-button.component.ts b/projects/planner/src/app/diff/tabs/profile-button/diff-tabs-button.component.ts index b4f2d451..f231b813 100644 --- a/projects/planner/src/app/diff/tabs/profile-button/diff-tabs-button.component.ts +++ b/projects/planner/src/app/diff/tabs/profile-button/diff-tabs-button.component.ts @@ -29,6 +29,7 @@ import {animate, keyframes, state, style, transition, trigger} from '@angular/an }) export class DiffTabsButtonComponent implements OnInit { @Input({required: true}) index = 0; + @Input({required: true}) title = ''; public state = 'disabled'; constructor(private profileComparatorService: ProfileComparatorService) {