1
0
mirror of https://github.com/go-vikunja/app synced 2024-06-02 18:49:47 +00:00

minor fix for label modification

This commit is contained in:
Paul Nettleton 2022-08-02 17:23:56 -05:00
parent e00be1f8b1
commit d31368ed27

View File

@ -372,12 +372,13 @@ class _TaskEditPageState extends State<TaskEditPage> {
endDate: _endDate,
priority: _priority,
repeatAfter: _repeatAfter,
labels: _labels,
color: _resetColor ? null : (_color ?? widget.task.color),
resetColor: _resetColor,
);
// update the labels
VikunjaGlobal.of(context)
await VikunjaGlobal.of(context)
.labelTaskBulkService
.update(updatedTask, _labels)
.catchError((err) {