Skip to content

Commit 40140d1

Browse files
authored
Merge pull request #301 from openmultiplayer/fix_sort_arrow_direction
This fixes the sort arrow direction, it was inverted
2 parents 8808cc4 + 8086fd9 commit 40140d1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/containers/MainBody/ServerList/ListHeader.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const ListHeader = () => {
4343
color={theme.primary}
4444
style={{ marginRight: 2, top: -1 }}
4545
>
46-
{searchData.sortName === "descending" ? "" : ""}
46+
{searchData.sortName === "descending" ? "" : ""}
4747
</Text>
4848
)}
4949
<Text
@@ -84,7 +84,7 @@ const ListHeader = () => {
8484
color={theme.primary}
8585
style={{ marginRight: 2, top: -1 }}
8686
>
87-
{searchData.sortPing === "descending" ? "" : ""}
87+
{searchData.sortPing === "descending" ? "" : ""}
8888
</Text>
8989
)}
9090
<Text
@@ -118,7 +118,7 @@ const ListHeader = () => {
118118
color={theme.primary}
119119
style={{ marginRight: 2, top: -1 }}
120120
>
121-
{searchData.sortMode === "descending" ? "" : ""}
121+
{searchData.sortMode === "descending" ? "" : ""}
122122
</Text>
123123
)}
124124
<Text
@@ -151,7 +151,7 @@ const ListHeader = () => {
151151
color={theme.primary}
152152
style={{ marginRight: 2, top: -1 }}
153153
>
154-
{searchData.sortPlayer === "descending" ? "" : ""}
154+
{searchData.sortPlayer === "descending" ? "" : ""}
155155
</Text>
156156
)}
157157
<Text

0 commit comments

Comments
 (0)