Skip to content
This repository has been archived by the owner on May 7, 2021. It is now read-only.

Commit

Permalink
fix(board): uncomment quick add in board view.
Browse files Browse the repository at this point in the history
  • Loading branch information
vikram-raj authored and michaelkleinhenz committed Mar 6, 2017
1 parent eae2084 commit 0bbeba2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion src/app/work-item/work-item-board/planner-board.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import { SidepanelModule } from '../../side-panel/side-panel.module';
import { ToolbarPanelModule } from '../../toolbar-panel/toolbar-panel.module';
import { WorkItemBoardComponent } from './work-item-board.component';
import { WorkItemDetailModule } from '../work-item-detail/work-item-detail.module';
import { WorkItemQuickAddModule } from '../work-item-quick-add/work-item-quick-add.module';
import { WorkItemService } from '../work-item.service';


Expand All @@ -47,7 +48,8 @@ import { WorkItemService } from '../work-item.service';
TreeModule,
TreeListModule,
WidgetsModule,
WorkItemDetailModule
WorkItemDetailModule,
WorkItemQuickAddModule
],
declarations: [
AlmFilterBoardList,
Expand Down
10 changes: 5 additions & 5 deletions src/app/work-item/work-item-board/work-item-board.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
</div>

<div class="boardlaneWrapper">
<!--<div *ngIf="lane.option == 'new'">-->
<!--<div *ngIf="loggedIn" class="boardQuickAddContainer flex-container in-column-direction">-->
<!--<alm-work-item-quick-add [wilistview] = "'wi-card-view'" (close)="close($event)"></alm-work-item-quick-add>-->
<!--</div>-->
<!--</div>-->
<div *ngIf="lane.option == 'new'">
<div *ngIf="loggedIn" class="boardQuickAddContainer flex-container in-column-direction">
<alm-work-item-quick-add [wilistview] = "'wi-card-view'" (close)="close($event)"></alm-work-item-quick-add>
</div>
</div>
<div class="board-card flex-container in-column-direction flex-grow-1" *ngFor='let item of workItems | almFilterBoardList:lane.option' (click)="gotoDetail(item)">
<div>
<div class="pull-left">
Expand Down

0 comments on commit 0bbeba2

Please sign in to comment.