1
0
Commit Graph

141 Commits

Author SHA1 Message Date
52fb43a6f7 fix(project): show description in title attribute without html
Resolves https://community.vikunja.io/t/feedback-to-vikunja-0-24-0/2557/6

(cherry picked from commit 4aeb228c3a69218535fddd00378f511a6b5d2b13)
2024-09-20 14:25:53 +02:00
8f5273600a fix(projects): do not hide 6th project on project overview
(cherry picked from commit b52d6dbf59f48a86cbcfad2a24c7fce9e3575639)
2024-09-20 14:25:51 +02:00
761d278b9a fix(kanban): save updated position to store
This fixes a bug where the position of a task would not be calculated correctly when the task was moved next to another recently moved task. The problem was caused by the calculation of the new position referring to the old value of the position attribute, because it was not updated in the local store.

Resolves https://community.vikunja.io/t/kanban-cards-in-wrong-order/2731/6

(cherry picked from commit 22e594e253d9f359507b30331dd3b1a2497f2600)
2024-09-20 14:22:54 +02:00
715269a5d0 fix(task): do not allow moving a task to the project the task already belongs to
(cherry picked from commit 7efc4d1bc890b4a12ee30274eaeb6062f4e49510)
2024-08-12 20:17:01 +02:00
a25834b089 fix(filters): immediately emit filter query when editing saved filter
Resolves https://community.vikunja.io/t/filtering-unexpected-character-relative-dates/2544/12
2024-07-18 16:32:09 +02:00
526bd1f170 fix(filters): reload tasks silently when marking one done in the list
This fixes a UI issue where if a user had a filter set and marked the task done, it would not disappear, even though the filter does not match the done task anymore.
2024-07-18 15:51:03 +02:00
12474e5be6 fix(kanban): make sure tasks which changed their done status are moved around in buckets
This fixes a bug where tasks which had their done status changed were not moved in the correct bucket. This affected both frontend and api. The move of the task between buckets is now correctly done in the api and frontend - with a bit of duplicated logic between the two. This could be optimized further in the future.

Resolves https://kolaente.dev/vikunja/vikunja/issues/2610
2024-07-18 12:39:29 +02:00
fd6692ea1a feat: remove props destructuring from FilterInput 2024-07-17 23:00:47 +02:00
82ee9f18eb fix(kanban): do not allow to create new tasks in saved filter 2024-07-17 14:00:47 +02:00
ed5feee33a fix(kanban): move task to done bucket when it was marked done from the task detail view 2024-07-17 13:56:43 +02:00
cb706416c6 feat: use withDefaults for DatepickerWithValues 2024-07-17 11:06:57 +00:00
fe8e0ef78b fix(kanban): use correct text color for deletion button 2024-07-17 10:09:36 +02:00
2f92e407cc feat: remove props destructuring from ViewEditForm 2024-07-16 22:59:25 +00:00
0c70aedeb1 feat: remove props destructuring from ProjectList 2024-07-16 22:06:48 +00:00
99e90c0b02 feat: remove props destructuring from ProjectTable 2024-07-16 22:06:40 +00:00
38744dfd5d feat: remove props destructuring for ProjectWrapper 2024-07-16 22:04:43 +00:00
5af908b2e5 feat: remove props destructuring from ProjectKanban 2024-07-16 21:57:57 +00:00
9d2e79f725 feat: define prop and emit types for FilterPopup 2024-07-16 21:50:23 +00:00
3ff56d7987 feat: remove props destructuring for Filters 2024-07-16 21:44:24 +00:00
323ecdaab6 fix(kanban): move repeating task back to old bucket when moved to the done bucket 2024-07-12 13:44:45 +02:00
ec0c05fd47 fix(kanban): update task done status after moving it into done bucket
Resolves https://kolaente.dev/vikunja/vikunja/issues/2518
2024-07-11 13:17:33 +02:00
af639a180c fix: wrapped button
This somehow weirdly fixes the test. I have no clue why. Regardless it should be better than before, because a button  (DropdownItem) should never contain another interactive element (the setBucketLimit input and save button).

The test failed because I replaced a v-if with v-show. I do not know _why_ this made the test fail. When I reproduced the test step by step it worked for me…
2024-07-10 09:19:55 +00:00
479b786761 feat: use withDefaults for ProjectCardGrid 2024-07-05 15:50:10 +00:00
359b07dabb fix(views): move bucket update to extra endpoint
BREAKING CHANGE: The bucket id of the task model is now only used internally and will not trigger a change in buckets when updating the task.

This resolves a problem where the task update routine needs to know the view context it is in. Because that's not really what it should be used for, the extra endpoint takes all required parameters and handles the complexity of actually updating the bucket.
This fixes a bug where it was impossible to move a task around between buckets of a saved filter view. In that case, the view of the bucket and the project the task was in would be different, hence the update failed.
2024-07-02 16:34:53 +02:00
e6ce1251f7 fix(filters): allow managing views for saved filters 2024-07-02 12:36:08 +02:00
8a2c74a702 feat: remove props destructuring from ProjectCard 2024-06-28 21:20:52 +00:00
914fe092e5 feat: add getter support to useProjectBackground 2024-06-28 21:18:37 +00:00
9e266f1e36 feat: use defineProps types for ProjectSettingsDropdown 2024-06-28 21:03:14 +00:00
66be016a7f feat: improve gantt filter label 2024-06-20 13:03:45 +00:00
da66eb7314 fix(filters): do not match partial labels
This change fixes a bug where an input query like "labels in test || labels in l" would be replaced with something like "undefinedabels in test || labels in l" or "3abels in test || labels in l" when there was a label starting with "l" - when it should not have touched that.
The matching was changed so that only exact label matches are taken into account when searching for labels.

Now, the above string would be replaced by "labels in 1 || labels in l" (when the label "test" has the id 1).

Maybe resolves https://community.vikunja.io/t/filtering-by-label-ux-issues/2393/8
2024-06-19 17:28:16 +02:00
f36115871c feat: camelcase global components 2024-06-19 14:02:14 +00:00
78eb28b054 feat(views): add filter syntax docs to filter input in views 2024-06-18 17:13:50 +02:00
23707fc493 feat: eslint enforce vue/component-name-in-template-casing 2024-06-17 21:01:36 +00:00
4260a504a9 feat(components): align component name casing AddTask 2024-06-17 13:50:16 +02:00
3b38a3faa6 feat(components): align component name casing SingleTaskInProject 2024-06-17 13:50:15 +02:00
13ffacd267 feat(components): align component name casing PriorityLabel 2024-06-17 13:41:40 +02:00
54d4fafad3 feat(components): align component name casing Labels 2024-06-17 13:41:39 +02:00
57f1be3e7e feat(components): align component name casing Label 2024-06-17 13:41:39 +02:00
baaf8d8f0e feat(components): align component name casing KanbanCard 2024-06-17 13:41:39 +02:00
c5724ecd5a feat(components): align component name casing DateTableCell 2024-06-17 13:41:38 +02:00
398ed2032e feat(components): align component name casing AssigneeList 2024-06-17 13:41:37 +02:00
f3daac2c31 feat(components): align component name casing ProjectSettingsDropdown 2024-06-17 13:41:37 +02:00
7a220964f7 feat(components): align component name casing ViewEditForm 2024-06-17 13:41:37 +02:00
2ae8ef2d7c feat(components): align component name casing Filter 2024-06-17 13:41:36 +02:00
c9e3ff8fcf feat(components): align component name casing FilterPopup 2024-06-17 13:41:36 +02:00
fdd780f645 feat(components): align component name casing User 2024-06-17 13:41:36 +02:00
09701eeb7b feat(components): align component name casing Subscription 2024-06-17 13:41:36 +02:00
f9bdc48224 feat(components): align component name casing Popup 2024-06-17 13:41:35 +02:00
b98280c954 feat(components): align component name casing Button 2024-06-17 13:41:35 +02:00
f939328531 feat(components): align component name casing Nothing 2024-06-17 13:41:35 +02:00