1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-17 21:26:22 -04:00

Fixed: Unable to close indexer category select input on mobile

(cherry picked from commit e42d1af5ff8f3eb987195caa7ec8a0bbaf4a00c3)
This commit is contained in:
Mark McDowall
2021-02-09 17:32:41 -08:00
committed by Qstick
parent 94df76b6e6
commit 33cd9f555e
4 changed files with 37 additions and 1 deletions

View File

@@ -518,6 +518,18 @@ class EnhancedSelectInput extends Component {
scrollDirection={scrollDirections.NONE}
>
<Scroller className={styles.optionsModalScroller}>
<div className={styles.mobileCloseButtonContainer}>
<Link
className={styles.mobileCloseButton}
onPress={this.onOptionsModalClose}
>
<Icon
name={icons.CLOSE}
size={18}
/>
</Link>
</div>
{
values.map((v, index) => {
const hasParent = v.parentKey !== undefined;