diff options
author | Phil Hughes <me@iamphill.com> | 2016-08-05 14:24:27 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2016-08-17 17:12:47 +0100 |
commit | 8c92646b66c8a0b0a77718567619cbf9d44467c7 (patch) | |
tree | 4e4832c0fd18aea0771d8a1d9016a474e26112cb /app/views/projects/boards | |
parent | 0fa57599a5a6fdd25711276f9fab72ca934502ab (diff) | |
download | gitlab-ce-8c92646b66c8a0b0a77718567619cbf9d44467c7.tar.gz |
Filters backlog by search query
Diffstat (limited to 'app/views/projects/boards')
-rw-r--r-- | app/views/projects/boards/components/_board.html.haml | 1 | ||||
-rw-r--r-- | app/views/projects/boards/components/_card.html.haml | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/app/views/projects/boards/components/_board.html.haml b/app/views/projects/boards/components/_board.html.haml index 318050d5850..b4d4ca4df06 100644 --- a/app/views/projects/boards/components/_board.html.haml +++ b/app/views/projects/boards/components/_board.html.haml @@ -19,7 +19,6 @@ ":board-id" => "board.id", ":issues" => "board.issues", ":disabled" => "#{current_user.nil?}", - ":query" => "query", ":filters" => "filters", ":loading" => "board.loading", ":issue-link-base" => "'#{namespace_project_issues_path(@project.namespace, @project)}'" } diff --git a/app/views/projects/boards/components/_card.html.haml b/app/views/projects/boards/components/_card.html.haml index 043a046701d..8b5da818856 100644 --- a/app/views/projects/boards/components/_card.html.haml +++ b/app/views/projects/boards/components/_card.html.haml @@ -1,4 +1,4 @@ -%li.card{ ":data-issue" => "issue.id", "v-for" => "issue in issues | filterBy query in 'title' | filterBy customFilter", "track-by" => "id" } +%li.card{ ":data-issue" => "issue.id", "v-for" => "issue in issues | orderBy 'id' -1", "track-by" => "id" } %h4.card-title %a{ ":href" => "issueLinkBase + '/' + issue.id", ":title" => "issue.title" } {{ issue.title }} |