Skip to content

Commit

Permalink
Changing direction in dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseVarGar committed Aug 7, 2023
1 parent d8c0bdd commit 09fd80c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/app/components/LanguageSelectorComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function LanguageSelectorComponent() {

return (
<>
<UncontrolledDropdown direction='start'>
<UncontrolledDropdown direction='down'>
<DropdownToggle nav caret>
<FormattedMessage id='language' />
</DropdownToggle>
Expand Down

1 comment on commit 09fd80c

@JesseVarGar
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not my code but this was giving me the same error twice on the console. It was saying start was an invalid option for direction and to choose from "up, down, left, right". I chose down and it fixed the error, I don't see any difference on the website.

Please sign in to comment.