diff options
-rw-r--r-- | app/views/shared/boards/components/_board.html.haml | 2 | ||||
-rw-r--r-- | qa/qa/page/project/issue_board/show.rb | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/app/views/shared/boards/components/_board.html.haml b/app/views/shared/boards/components/_board.html.haml index 6b1462048cc..3e12feb65ca 100644 --- a/app/views/shared/boards/components/_board.html.haml +++ b/app/views/shared/boards/components/_board.html.haml @@ -1,4 +1,4 @@ -.board{ ":class" => '{ "is-draggable": !list.preset, "is-expandable": list.isExpandable, "is-collapsed": !list.isExpanded, "board-type-assignee": list.type === "assignee", }', +.board{ ":class" => '{ "is-draggable": !list.preset, "is-expandable": list.isExpandable, "is-collapsed": !list.isExpanded, "board-type-assignee": list.type === "assignee" }', ":data-id" => "list.id" } .board-inner.qa-issue-board %header.board-header{ ":class" => '{ "has-border": list.label && list.label.color }', ":style" => "{ borderTopColor: (list.label && list.label.color ? list.label.color : null) }", "@click" => "toggleExpanded($event)" } diff --git a/qa/qa/page/project/issue_board/show.rb b/qa/qa/page/project/issue_board/show.rb index 65ce550059e..d3c1735da24 100644 --- a/qa/qa/page/project/issue_board/show.rb +++ b/qa/qa/page/project/issue_board/show.rb @@ -27,7 +27,6 @@ module QA end def create_default_lists - sleep 10 click_element :default_lists_button end |