Verified Commit 7a8447c1 authored by Mateusz Żebrak's avatar Mateusz Żebrak
Browse files

Fix EmptySelectError crash on Proposals tab pane

Error was:
```
EmptySelectError: Select options cannot be empty if selection can't be blank.
```

It was caused because ORDER_DIRECTIONS alias was refering to
get_args(OrderDirections) where OrderDirections was `type`.
Aliases annotated with `type` cannot be used in runtime.
Instead, corresponding finals from
clive.__private.core.constants.data_retrieval
were used.
parent ed8f170d
Loading
Loading
Loading