mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
disable arrow icon on dropdown
This commit is contained in:
parent
d343aa839c
commit
e30afa4c29
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue