-
Notifications
You must be signed in to change notification settings - Fork 3k
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
feat: allow the sidebar size to be draggable #9401
feat: allow the sidebar size to be draggable #9401
Conversation
<div className="entity" {...provided.droppableProps} ref={provided.innerRef}> | ||
{updateEntityAggregations?.map((entityAggregation, index)=> { | ||
return ( | ||
<Draggable key={entityAggregation.value} draggableId={entityAggregation.value} index={index}> |
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.
Why do we need all of the draggable stuff here?
Can we just follow the same pattern we are using on the other sidebar? This will require new developers get up to speed on this draggable thing
I might be missing some advantage to introducing this, though. If yes, can you please explain?
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.
I was confused between draggable and resizer as ticket having title "allow the sidebar size to be draggable" after I post video on linear @Aseem Bansal said we need Resizer. you can also check conversation on ticket
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.
I have remove Draggable
Resizer.webm |
Checklist