Update board naming
This commit is contained in:
parent
b4a51d7f14
commit
2a566e94c3
@ -58,7 +58,12 @@ export class BoardDisplay implements OnInit {
|
|||||||
});
|
});
|
||||||
|
|
||||||
boardService.activeBoardChanged.subscribe((board: Board) => {
|
boardService.activeBoardChanged.subscribe((board: Board) => {
|
||||||
|
if (!board) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
this.activeBoard = board;
|
this.activeBoard = board;
|
||||||
|
title.setTitle('TaskBoard - ' + board.name);
|
||||||
});
|
});
|
||||||
|
|
||||||
auth.userChanged.subscribe((user: User) => {
|
auth.userChanged.subscribe((user: User) => {
|
||||||
|
Reference in New Issue
Block a user