Fix collapse column bug

This commit is contained in:
Matthew Ross 2017-09-02 14:22:05 -04:00
parent eedcedab38
commit 9c214ed016
2 changed files with 2 additions and 1 deletions

View File

@ -152,6 +152,7 @@ export class ColumnDisplay implements OnInit {
this.boardService.toggleCollapsed(this.activeUser.id, this.columnData.id)
.subscribe((apiResponse: ApiResponse) => {
this.activeUser.collapsed = apiResponse.data[1];
this.auth.updateUser(this.activeUser);
});
}

View File

@ -2,7 +2,7 @@
<html lang="en">
<head>
<title>TaskBoard - Kanban App</title>
<base href="/web/TaskBoard/dist/">
<base href="/dist/">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">