Skip to content

Commit

Permalink
Change drop location for dropdown menus (#4039)
Browse files Browse the repository at this point in the history
  • Loading branch information
WithoutPants authored Aug 17, 2023
1 parent efc7b01 commit 87e1231
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ export const PerformerEditPanel: React.FC<IPerformerDetails> = ({
);

return (
<Dropdown drop="up" className="d-inline-block">
<Dropdown className="d-inline-block">
<Dropdown.Toggle variant="secondary" className="mr-2">
<FormattedMessage id="actions.scrape_with" />
</Dropdown.Toggle>
Expand Down
2 changes: 1 addition & 1 deletion ui/v2.5/src/components/Tags/TagDetails/Tag.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ const TagPage: React.FC<IProps> = ({ tag, tabKey }) => {

function renderMergeButton() {
return (
<Dropdown drop="up">
<Dropdown>
<Dropdown.Toggle variant="secondary">
<FormattedMessage id="actions.merge" />
...
Expand Down

0 comments on commit 87e1231

Please sign in to comment.