Fix btrfs skip mount options (#2881)

This commit is contained in:
codefiles 2024-11-19 02:36:31 -05:00 committed by GitHub
parent f034c3693c
commit 594ca3504f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -266,10 +266,12 @@ def select_mount_options() -> list[str]:
columns=2,
orientation=Orientation.HORIZONTAL,
search_enabled=False,
allow_skip=False
allow_skip=True
).run()
match result.type_:
case ResultType.Skip:
return []
case ResultType.Selection:
return [result.get_value()]
case _: