From 309f75b19d26c0cda48667c443b3e309ead5035b Mon Sep 17 00:00:00 2001 From: konrad Date: Fri, 31 Jan 2020 10:05:53 +0000 Subject: [PATCH] Task Search (#52) Add hiding the search Add actually searching for tasks Fix jumping search button on page load Add search button Co-authored-by: kolaente Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/52 --- src/components/lists/ShowList.vue | 2 +- src/components/tasks/ShowListTasks.vue | 55 +++++++++++++++++++++++++- src/main.js | 2 + src/styles/components/list.scss | 25 ++++++++++++ src/styles/theme/form.scss | 3 ++ 5 files changed, 85 insertions(+), 2 deletions(-) diff --git a/src/components/lists/ShowList.vue b/src/components/lists/ShowList.vue index b7a39c82c..5116b9493 100644 --- a/src/components/lists/ShowList.vue +++ b/src/components/lists/ShowList.vue @@ -4,7 +4,7 @@ -

{{ list.title }}

+

{{ list.title === '' ? 'Loading...': list.title}}

List Gantt diff --git a/src/components/tasks/ShowListTasks.vue b/src/components/tasks/ShowListTasks.vue index 755c1f7d4..251c779e5 100644 --- a/src/components/tasks/ShowListTasks.vue +++ b/src/components/tasks/ShowListTasks.vue @@ -1,5 +1,36 @@