Compare commits

1 Commits

Author SHA1 Message Date
f62c30da48 fix: task sorting
All checks were successful
markdownlint check / markdownlint check (pull_request) Successful in 28s
htmlhint check / htmlhint check (pull_request) Successful in 36s
Prettier check / Prettier check (pull_request) Successful in 26s
Stylelint check / Stylelint check (pull_request) Successful in 45s
ShellCheck check / ShellCheck check (pull_request) Successful in 1m25s
yamllint check / yamllint check (pull_request) Successful in 37s
checkov check / checkov check (pull_request) Successful in 3m44s
Rust check / Rust check (pull_request) Successful in 14m27s
dotenv-linter check / dotenv-linter check (pull_request) Successful in 10s
conventional pull request title check / conventional pull request title check (pull_request) Successful in 5s
actionlint check / actionlint check (pull_request) Successful in 11s
conventional commit messages check / conventional commit messages check (pull_request) Successful in 9s
hadolint check / hadolint check (pull_request) Successful in 14s
GitLeaks check / GitLeaks check (pull_request) Successful in 19s
2025-12-19 18:45:01 +01:00

View File

@@ -50,7 +50,7 @@ pub(crate) fn TaskList(tasks: Vec<TaskWithSubtasks>, class: Option<&'static str>
// To prevent editing the task.
event.stop_propagation();
async move {
let _ = complete_task(task.task.id).await;
let _ = complete_task(task.task.id).await;
}
}
}