-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
feat: Tidying up kanban board #1900
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
fireapache
wants to merge
17
commits into
AndyMik90:develop
Choose a base branch
from
fireapache:feat/tidying-up-kanban-board
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+153
−145
Open
Changes from 16 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
836f75f
auto-claude: subtask-1-1 - Update KanbanBoard component: remove refre…
fireapache 66fc27d
auto-claude: subtask-1-2 - Update ProjectTabBar component: add Refres…
fireapache 7039817
auto-claude: subtask-1-3 - Update SortableProjectTab component: remov…
fireapache aa7b13c
auto-claude: subtask-1-4 - Add translation keys for new tooltips in E…
fireapache 3f4110e
auto-claude: subtask-1-5 - Update parent component to pass new props …
fireapache 8e57a8e
fix: correct Show Archived button and Add tooltip per QA feedback
fireapache a0dd8a7
fix: Address QA issues (qa-requested)
fireapache 00ecce1
fix: anchor Refresh and Show Archived buttons to right side of tab bar
fireapache a4f4d6c
fix: add aria-label to Show Archived button for accessibility
fireapache 39d9033
fix: show Refresh and Show Archived buttons only on Kanban view
fireapache b13b003
fix: add explicit common: namespace prefix to translation keys
fireapache 2139966
docs: clarify Kanban controls comment in ProjectTabBar
fireapache ac14865
refactor: simplify Show Archived button conditional rendering
fireapache 3e78312
Merge branch 'origin/develop' into auto-claude/031-tidying-up-kanban-…
fireapache f2a2b4f
fix: add missing Tooltip imports to KanbanBoard and .secretsignore
fireapache d0a5bbe
fix: Address PR review feedback (qa-requested)
fireapache 1f63c2e
fix: Address PR review feedback (qa-requested)
fireapache File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # Test files with mock credentials | ||
| *.test.ts | ||
| *.test.tsx | ||
| test_*.py | ||
| tests/ | ||
|
|
||
| # Scripts with checksums/hashes (not secrets) | ||
| apps/frontend/scripts/download-python.cjs | ||
| .github/actions/ |
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor UX gap: "Expand All" is hidden when fewer than 3 columns are collapsed.
With 1 or 2 columns collapsed,
collapsedColumnCount >= 3evaluates tofalseand the entire header (including the only available "Expand All" shortcut) is hidden. Users must expand each collapsed column individually via the per-column button. Consider lowering the threshold to>= 1or>= 2to surface the convenience button earlier.💡 Suggested threshold adjustment
🤖 Prompt for AI Agents