Publish GitHub Repository Dropdown Showing Overflowing Profile Icon
Thanks in advance for your bug report!
- [X] Have you reproduced issue in safe mode?
- [X] Have you used the debugging guide to try to resolve the issue?
- [X] Have you checked our FAQs to make sure your question isn't answered there?
- [X] Have you checked to make sure your issue does not already exist?
- [X] Have you checked you are on the latest release of Pulsar?
What happened?
I think the above speaks for itself.
Pulsar version
1.114.0
Which OS does this happen on?
🪟 Windows
OS details
10 Pro 22H2
Which CPU architecture are you running this on?
None
What steps are needed to reproduce this?
In GitHub panel, click Publish & Initialise Repository. Be greeted with a blinding, white filled dropdown, due to your user's profile icon spanning its whole width.
Additional Information:
This seems like an easy issue to fix, as all it took to get it back to a seemingly normal state --non-jarring, at the very least-- was to explicitly tell two elements to size themselves according to the dimensions of their direct parent, as shown here :
The following rules were used to quickly "fix" this :
.Select-placeholder, .Select--single > .Select-control .Select-value {
padding: unset;
}
.github-RepositoryHome-ownerOption {
height: 100%;
}
.github-RepositoryHome-ownerAvatar {
height: 100%;
/*padding: 0.2em;*/
}
Thanks a ton for reporting this, and especially for including a fix, seems pretty straightforward to implement!
I'm having the same issue with 1.117, installed using flatpak on Tumbleweed.
Thanks a ton for reporting this, and especially for including a fix, seems pretty straightforward to implement!
Any ETA on merging this ?