summaryrefslogtreecommitdiffstats
path: root/ui/src/components/sort-select.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/components/sort-select.tsx')
-rw-r--r--ui/src/components/sort-select.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/src/components/sort-select.tsx b/ui/src/components/sort-select.tsx
index 22942d1b..736cbb30 100644
--- a/ui/src/components/sort-select.tsx
+++ b/ui/src/components/sort-select.tsx
@@ -24,8 +24,9 @@ export class SortSelect extends Component<SortSelectProps, SortSelectState> {
}
static getDerivedStateFromProps(props) {
+ console.log('sort-select', props);
return {
- sort: props.sort,
+ sort: Number(props.sort),
};
}