1
0
Commit Graph

323 Commits

Author SHA1 Message Date
a721d9286b fix: disable button if loading 2024-07-03 16:05:05 +00:00
bc2baa3bbd feat(Multiselect): hide multiselect during loading 2024-07-03 15:34:19 +00:00
51660f7677 fix: app bottom padding
display: flow-root creates a new block-formatting context and thus prevents overflowing margin issues created by a last child element that has a margin bottom
2024-07-03 15:33:49 +00:00
f08039b23c fix: ProjectSearch default value 2024-07-03 10:02:31 +02: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
7db9e64053 feat: use withDefaults for AddTask 2024-06-30 14:16:01 +00:00
8a2c74a702 feat: remove props destructuring from ProjectCard 2024-06-28 21:20:52 +00:00
516f507ac4 feat: remove props destructuring EditorToolbar 2024-06-28 21:20:44 +00:00
914fe092e5 feat: add getter support to useProjectBackground 2024-06-28 21:18:37 +00:00
01a4ad99ab feat: use withDefaults for Done 2024-06-28 21:16:57 +00:00
c81649c139 feat: use defineProps types in CreatedUpdated 2024-06-28 21:10:55 +00:00
dea051010d feat: use withDefaults for Labels 2024-06-28 21:08:35 +00:00
1dbd8b6c37 feat: use defineProps types for ChecklistSummary 2024-06-28 21:07:31 +00:00
9e266f1e36 feat: use defineProps types for ProjectSettingsDropdown 2024-06-28 21:03:14 +00:00
5b0ce4e01c feat: use withDefaults for Card 2024-06-28 21:02:21 +00:00
7c9f0b8ada feat: remove props destructuring from SingleTaskInlineReadonly 2024-06-28 21:02:01 +00:00
bd32f7aef5 feat: use withDefaults for ProjectSearch 2024-06-28 21:00:15 +00:00
b224b331f5 fix: remove props prefix from template 2024-06-25 13:57:52 +00:00
9f375ecd7d fix: import type in EditorToolbar 2024-06-25 15:18:27 +02:00
ff2644d1c5 feat: use defineOptions for Loadings.vue 2024-06-20 19:59:31 +00:00
4bd9c79912 feat: remove props destructuring ProjectsNavigationItem 2024-06-20 19:35:37 +00:00
94a907b009 feat: use withDefaults for BaseCheckbox 2024-06-20 13:04:55 +00:00
66be016a7f feat: improve gantt filter label 2024-06-20 13:03:45 +00:00
ba5240f6ae feat(XButton): merge script blocks 2024-06-20 13:03:41 +00:00
c90ee0142a fix: reset drag.value 2024-06-20 13:02:43 +00:00
4c5bb3f114 feat: improve message types 2024-06-20 13:02:02 +00:00
baaf612239 fix: import PeriodUnit as type 2024-06-20 12:16:09 +02: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
9101f26101 fix(comments): do not use whitespace as gap 2024-06-19 16:48:21 +02:00
f36115871c feat: camelcase global components 2024-06-19 14:02:14 +00:00
1977a7bee0 feat: add default to custom transition 2024-06-19 13:59:24 +00:00
ff5ee515f9 fix: remove uppercase transformation from username (#2445)
Because usernames might have lowercase letters. Transforming the casing can be confusing and even change meaning.

Reviewed-on: https://kolaente.dev/vikunja/vikunja/pulls/2445
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Co-committed-by: Dominik Pschenitschni <mail@celement.de>
2024-06-19 13:58:25 +00:00
78eb28b054 feat(views): add filter syntax docs to filter input in views 2024-06-18 17:13:50 +02:00
9f604eca79 fix(tasks): clarify usage of repeating modes available in quick add magic.
Originally, it was possible to specify repeating intervals for months or years. This was actually misleading because the interval would be converted to seconds under the hood, causing all kinds of problems with leap years and months with 30 vs 31 days. Because of that, the options for month and year were removed in 7746d39161 to make it clear what these actually meant.
Now, since we do have a repeating mode "Monthly", this commit changes the behaviour to repeat a task monthly when it was specified as "every month", but only that. All other cases were removed from the docs since they are not actually supported.

https://github.com/go-vikunja/vikunja/issues/271
2024-06-18 15:41:30 +02:00
5e4b9e38a6 feat: use withDefaults in CreateEdit 2024-06-18 11:29:33 +00:00
23707fc493 feat: eslint enforce vue/component-name-in-template-casing 2024-06-17 21:01:36 +00:00
2d358a57cc chore: useDefineOptions for inheritAttrs in Error.vue 2024-06-17 14:38:51 +00:00
657e9a5413 fix(task): do not move task dates when undoing a repeated task
Resolves https://community.vikunja.io/t/undo-on-repeated-task-moves-dates-forward/970
2024-06-17 15:49:28 +02:00
06c3a64594 fix(task): show correct success message when marking a repeating task as done 2024-06-17 15:41:18 +02:00
47143af9d1 fix: missing required prop BackgroundColor 2024-06-17 15:34:33 +02:00
341b8d2045 feat: improve subscription 2024-06-17 13:28:11 +00:00
b1a8bbe760 feat: use withDefaults and defineOptions in Modal 2024-06-17 14:41:03 +02: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
a3c3e39e93 feat(components): align component name casing SingleTaskInlineReadonly 2024-06-17 13:50:15 +02:00
1918ffdcff feat(components): align component name casing RepeatAfter 2024-06-17 13:50:15 +02:00
304779a7de feat(components): align component name casing Reminders 2024-06-17 13:50:14 +02:00
cb8b685d08 feat(components): align component name casing ReminderPeriod 2024-06-17 13:50:14 +02:00
674e37d7b3 feat(components): align component name casing ReminderDetail 2024-06-17 13:50:13 +02:00