fix: Fix how the task menu panel covers the knowledge filter panel#979
Merged
Conversation
lucaseduoli
requested changes
Feb 18, 2026
lucaseduoli
left a comment
Collaborator
There was a problem hiding this comment.
when switching from tasks to knowledge filter and vice versa, the animation is triggered, showing a black screen underneath. Could you make it so that, when opening the tasks with the knowledge filter opened, it closes the knowledge filter before opening tasks (or removing the animation on that case)?
Collaborator
|
I believe the best bet would be using the sidebar from shadcn |
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.
Previously if you have the Tasks panel open and click to create a knowledge filter it is hidden behind the tasks panel
Fixes #799
This pull request refactors the layout and context logic for the right-side panels (task notifications and knowledge filter) in the frontend. The main improvement is consolidating the notifications and filter panels into a single "right panel" area, ensuring only one is open at a time, and adding animated transitions for a smoother user experience. Context providers are updated to support this new logic.
Layout and UI improvements:
right-panelarea in the CSS grid, replacing the previous separatenotificationsandfiltersareas. Only one panel can be open at a time, and the grid and variable names are updated accordingly (frontend/app/globals.css). [1] [2]LayoutWrappercomponent to render the right panel with animated transitions usingframer-motion, and to ensure only one of the panels (notifications or filter) is visible at a time (frontend/components/layout-wrapper.tsx). [1] [2]Context logic updates:
closeMenuandclosePanelOnlymethods to the task and knowledge filter contexts, respectively, and updated their usage to enforce the rule that only one right panel can be open at a time (frontend/contexts/task-context.tsx,frontend/contexts/knowledge-filter-context.tsx). [1] [2] [3] [4] [5]