Change drop location for dropdown menus (#4039)

This commit is contained in:
WithoutPants 2023-08-17 15:09:55 +10:00 committed by GitHub
parent efc7b01cf6
commit 87e12319e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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>

View file

@ -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" />
...