Fix max_value in manage list results

This commit is contained in:
2023-04-07 22:48:09 +02:00
parent 2ef30dfb80
commit 5c8b7062cc

View File

@@ -1534,7 +1534,7 @@ class Summary:
)
path = Folders.hidden_results if self.hidden else Folders.results
book = None
max_value = len(self.data)
max_value = len(self.data_filtered)
while True:
match get_input(message=message).split():
case [cmd.relist]: