diff --git a/src/app/board/board.component.html b/src/app/board/board.component.html index e3cd46e..f0cc34a 100644 --- a/src/app/board/board.component.html +++ b/src/app/board/board.component.html @@ -44,7 +44,7 @@
You have not selected a default board. You may select a - default board in your Settings. + default board in your Settings.
Until then, select a board from the list above.
diff --git a/src/app/board/board.component.ts b/src/app/board/board.component.ts index f049fee..f5531f3 100644 --- a/src/app/board/board.component.ts +++ b/src/app/board/board.component.ts @@ -1,4 +1,4 @@ -import { Component } from '@angular/core'; +import { Component, OnInit } from '@angular/core'; import { Router, ActivatedRoute } from '@angular/router'; import { Title } from '@angular/platform-browser'; @@ -23,7 +23,7 @@ import { BoardService } from './board.service'; selector: 'tb-board', templateUrl: 'app/board/board.component.html' }) -export class BoardDisplay { +export class BoardDisplay implements OnInit { private activeUser: User; private activeBoard: Board; private boards: Array