Update board naming

This commit is contained in:
kiswa 2017-07-14 23:47:33 +00:00
parent b4a51d7f14
commit 2a566e94c3

View File

@ -58,7 +58,12 @@ export class BoardDisplay implements OnInit {
});
boardService.activeBoardChanged.subscribe((board: Board) => {
if (!board) {
return;
}
this.activeBoard = board;
title.setTitle('TaskBoard - ' + board.name);
});
auth.userChanged.subscribe((user: User) => {