Skip to content

Commit

Permalink
changes in the maintanance
Browse files Browse the repository at this point in the history
  • Loading branch information
Bharath Kumar authored and Bharath Kumar committed Aug 16, 2024
1 parent e526453 commit 6a774a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions src/app/component/app-nav-bar/app-nav-bar.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ import { UrlService } from 'src/app/shared/url.service'
export class AppNavBarComponent implements OnInit, OnChanges {
@Input() mode: 'top' | 'bottom' = 'top'
@Input() headerFooterConfigData: any
// tslint:disable-next-line:indent
@Output() infoBlockAction = new EventEmitter()
infoBlockEnable : boolean = true

infoBlockEnable = true
hideKPOnNav = false
basicBtnAppsConfig: NsWidgetResolver.IRenderConfigWithTypedData<IBtnAppsConfig> = {
widgetType: 'actionButton',
Expand Down Expand Up @@ -378,7 +380,7 @@ export class AppNavBarComponent implements OnInit, OnChanges {
return { ...item, forPreview: !this.isforPreview, enableLang: this.enableLang }
}

infoBlockActionMethod(){
infoBlockActionMethod() {
this.infoBlockEnable = !this.infoBlockEnable
this.infoBlockAction.emit(this.infoBlockEnable)
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/header/header/header.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class HeaderComponent implements OnInit {
isNavBarRequired = true
showNavbar = true
widgetData = {}
infoBlockEnable: boolean = true
infoBlockEnable = true
mobileTopHeaderVisibilityStatus = true
@Input() mode: any
@Input() headerFooterConfigData: any
Expand Down

0 comments on commit 6a774a9

Please sign in to comment.