Add "Hide Done Tasks" Checkbox to Task Board#66
Open
Lightning11wins wants to merge 2 commits into
Open
Conversation
gbeeley
requested changes
Jun 18, 2026
Author
|
@gbeeley I think I've resolved your comments. |
gbeeley
requested changes
Jun 18, 2026
| ppl = (select count(1) from /apps/kardia/data/Kardia_DB/t_participant/rows p where :p:t_project_id = :tmp:t_project_id), | ||
| spr = (select count(1) from /apps/kardia/data/Kardia_DB/t_sprint_project/rows sp where :sp:t_project_id = :tmp:t_project_id), | ||
| past_end = condition(isnull(:pr:t_project_end, getdate()) < getdate() and (select isnull(max(:s:t_sprint_end), getdate()) from /apps/kardia/data/Kardia_DB/t_sprint/rows s, /apps/kardia/data/Kardia_DB/t_sprint_project/rows sp where :sp:t_project_id = :pr:t_project_id and :s:t_sprint_id = :sp:t_sprint_id) < getdate(), 1, 0) | ||
| " + (select sum(", tasks_" + :ts:t_task_state_id + " = (select * from expression('/apps/kardia/modules/task/block_tasklist.qy?project=' + :pr:t_project_id + '&state=" + :ts:t_task_state_id + "')) ") from /apps/kardia/data/Kardia_DB/t_task_state/rows ts) + " |
Member
There was a problem hiding this comment.
Why was this line removed (and the previous similar one)? This provides the itemlist data needed for the task cells.
Author
There was a problem hiding this comment.
Oops, I didn't intend to commit that. It's because I run the task board without test data, so those lines prevent the page from rendering. One sec.
Author
There was a problem hiding this comment.
Yeah, I did not intend to commit that change. Sorry about that. Fixed.
669804f to
cf48ad1
Compare
Author
|
@gbeeley I think I've resolved your comments. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR will add a "hide done tasks" checkbox to the task page of the taskboard.
I hacked together a really janky JS script during Code-a-Thon 2025 that I could paste into my console every time I went to this tab that would do this. After the interns had the same issue, I decided I'd finally fix it. With this PR, there will finally be an official, far-more-user-friendly solution.