fix: Labels overflow in peek, detail view (#3995)

This commit is contained in:
Lakhan Baheti 2024-03-20 18:07:11 +05:30 committed by GitHub
parent 901a7703ff
commit 4ea616f1cd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 5 deletions

View file

@ -56,7 +56,7 @@ export const IssueLabelSelect: React.FC<IIssueLabelSelect> = observer((props) =>
query === "" ? options : options?.filter((option) => option.query.toLowerCase().includes(query.toLowerCase()));
const { styles, attributes } = usePopper(referenceElement, popperElement, {
placement: "bottom-start",
placement: "bottom-end",
modifiers: [
{
name: "preventOverflow",