-
-
Notifications
You must be signed in to change notification settings - Fork 4.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(issue-views): Add save button to issue stream #88757
Conversation
grid-template-areas: 'page-filters search sort'; | ||
} | ||
${p => | ||
p.hasIssueViewSharing |
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.
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.
Looks great! Just two tiny nits
items={[ | ||
{ | ||
key: 'save-as', | ||
label: t('Save As'), |
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.
nit: maybe "Save as New View"? would also increase the width of the button, which would be nice since it's all the way to the window.
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.
Good call, does look awkwardly tiny right now!
}, | ||
]} | ||
trigger={props => ( | ||
<DropdownTrigger |
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.
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.
Yeah agreed, looks like all the buttons we have like this are smaller so the default paddings look alright
Adds a save button and modal for creating a new view. Saving a new view works by selecting "Save as", but for now the "Save" button behavior has not been implemented.
Adds a save button and modal for creating a new view. Saving a new view works by selecting "Save as", but for now the "Save" button behavior has not been implemented.