Skip to content

Commit d677f32

Browse files
authored
Change sort labels (#35)
Replaces "Ascending" with "Smallest First" and "Descending" with "Largest First". I think this is easier to understand.
1 parent d7d3bfc commit d677f32

File tree

1 file changed

+2
-2
lines changed
  • src/Page/MoleculeBrowser/SortButton/components/styled

1 file changed

+2
-2
lines changed

src/Page/MoleculeBrowser/SortButton/components/styled/form.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,12 @@ const Radio: React.FunctionComponent<RadioProps>
9696
<FormControlLabel
9797
value={'ascending'}
9898
control={<RadioBase />}
99-
label={'Ascending'}
99+
label={'Smallest First'}
100100
/>
101101
<FormControlLabel
102102
value={'descending'}
103103
control={<RadioBase />}
104-
label={'Descending'}
104+
label={'Largest First'}
105105
/>
106106
</RadioGroup>
107107
</Grid>

0 commit comments

Comments
 (0)