fix(ui): consolidate toolbar features into a more menu and fix search and share links#232
Merged
Merged
Conversation
… and share links The nine new feature buttons crowded the board toolbar, so they now live behind a single dots trigger using the standard DropDown pattern from the task context menu. Recent and Export became v-model modals so every entry opens uniformly. Search-all project results now deep-link to the project first active sprint with the list view tab, because project routes always carry a sprint segment; the API attaches sprintId and folderId per project. Public share links work in local dev via a dev-server proxy rule for the server-rendered /share pages. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
This was referenced Jun 15, 2026
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.
What changed
1. Toolbar: one
...menu instead of nine buttonsThe new feature buttons (Search all, Recent, Burndown, Epics, Pages, Export, Public link, Import Jira, Auto-archive) crowded the board toolbar onto a second line. They now live behind a single dots trigger that opens a standard
DropDownmenu — same pattern as the task context menu. Recent and Export were converted from self-triggering dropdowns intov-modelmodals so all nine entries open uniformly from the menu.2. Search all: project click 404 fix
Clicking a project result navigated to
/:cid/project/:id, a route that does not exist (project routes always carry a sprint segment). The search API now attaches each project''s first active, non-private sprint, and the modal deep-links to/:cid/project/:id/s/:sprintId?tab=ProjectListView(or the/fs/folder variant), falling back to the/proute with the list view tab for projects without sprints.3. Public share links in local dev
/share/:tokenpages are server-rendered by Express, but the copied link uses the page origin — on the Vue dev server (8080) the path fell through to the SPA and redirected to login. Added a^/sharedev-server proxy rule tovue.config.js. Production is unaffected (nginx already sends everything to the Node app).Verification
STORAGE_TYPEset🤖 Generated with Claude Code