Skip to content

Commit

Permalink
add return
Browse files Browse the repository at this point in the history
  • Loading branch information
kaulfield23 committed Sep 7, 2023
1 parent dcbece4 commit 5e188c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default class PersonTagColumnType implements IColumnType {
if (isNaN(Number(v2.value))) {
return -1;
} else {
v1.value.localeCompare(v2.value);
return v1.value.localeCompare(v2.value);
}
}

Expand Down

0 comments on commit 5e188c4

Please sign in to comment.