diff --git a/projects/components/src/header/application/application-header.component.ts b/projects/components/src/header/application/application-header.component.ts index 4e6b649f6..15d8ee9e5 100644 --- a/projects/components/src/header/application/application-header.component.ts +++ b/projects/components/src/header/application/application-header.component.ts @@ -1,4 +1,4 @@ -import { ChangeDetectionStrategy, Component, Inject } from '@angular/core'; +import { ChangeDetectionStrategy, Component, Inject, Input } from '@angular/core'; import { GLOBAL_HEADER_HEIGHT, NavigationService } from '@hypertrace/common'; @Component({ @@ -15,7 +15,7 @@ import { GLOBAL_HEADER_HEIGHT, NavigationService } from '@hypertrace/common';
-
+
@@ -27,6 +27,9 @@ import { GLOBAL_HEADER_HEIGHT, NavigationService } from '@hypertrace/common'; ` }) export class ApplicationHeaderComponent { + @Input() + public showTimeRange: boolean = true; + public constructor( @Inject(GLOBAL_HEADER_HEIGHT) public readonly height: string, private readonly navigationService: NavigationService