Skip to content

Commit

Permalink
EM-fixing home page link
Browse files Browse the repository at this point in the history
  • Loading branch information
eserkansozer committed May 11, 2020
1 parent e745b67 commit 40c63cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/layouts/gov-uk-layout/header/header.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<div class="govuk-header__content">

<a class="govuk-header__link govuk-header__link--service-name" [routerLink]="['/']">Schools financial benchmarking</a>
<a class="govuk-header__link govuk-header__link--service-name" href="{{settings.sfbDomain}}">Schools financial benchmarking</a>

<!-- <button type="button" class="govuk-header__menu-button govuk-js-header-toggle" aria-controls="navigation"
aria-label="Show or hide Top Level Navigation">Menu</button>
Expand Down
6 changes: 4 additions & 2 deletions src/app/layouts/gov-uk-layout/header/header.component.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import { Component, OnInit } from '@angular/core';
import { Component, OnInit, Inject } from '@angular/core';
import { appSettings, AppSettings } from '@core/config/settings/app-settings';


@Component({
selector: 'app-header',
Expand All @@ -7,7 +9,7 @@ import { Component, OnInit } from '@angular/core';
})
export class HeaderComponent implements OnInit {

constructor() { }
constructor(@Inject(appSettings) public settings: AppSettings) { }

ngOnInit() {

Expand Down

0 comments on commit 40c63cc

Please sign in to comment.