disable arrow icon on dropdown

This commit is contained in:
Kentai Radiquum 2024-07-16 13:31:27 +05:00
parent d343aa839c
commit e30afa4c29
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
2 changed files with 2 additions and 2 deletions

View file

@ -62,7 +62,7 @@ export function BookmarksCategoryPage(props) {
<h1 className="font-bold text-md sm:text-xl md:text-lg xl:text-xl">
{props.SectionTitleMapping[props.slug]}
</h1>
<Dropdown label={sort.values[selectedSort].name} dismissOnClick={true}>
<Dropdown label={sort.values[selectedSort].name} dismissOnClick={true} arrowIcon={false}>
{sort.values.map((item, index) => (
<Dropdown.Item key={index} onClick={() => setSelectedSort(index)}>
<span

View file

@ -62,7 +62,7 @@ export function FavoritesPage() {
<h1 className="font-bold text-md sm:text-xl md:text-lg xl:text-xl">
Избранное
</h1>
<Dropdown label={sort.values[selectedSort].name} dismissOnClick={true}>
<Dropdown label={sort.values[selectedSort].name} dismissOnClick={true} arrowIcon={false}>
{sort.values.map((item, index) => (
<Dropdown.Item key={index} onClick={() => setSelectedSort(index)}>
<span