We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@switz implemented a new sort ordering for sources on the web: soundboard -> charlie miller -> etree id -> avg rating
const sortedTapes = [...data.sources].sort( firstBy(t => t.is_soundboard) .thenBy(t => /charlie miller/i.test([t.taper, t.transferrer, t.source].join(''))) .thenBy((t1, t2) => getEtreeId(t1.upstream_identifier) - getEtreeId(t2.upstream_identifier)) .thenBy(t => t.avg_rating_weighted) );
The code is at https://github.com/RelistenNet/relisten-web/blob/master/redux/modules/tapes.js#L48-L57
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@switz implemented a new sort ordering for sources on the web: soundboard -> charlie miller -> etree id -> avg rating
The code is at https://github.com/RelistenNet/relisten-web/blob/master/redux/modules/tapes.js#L48-L57
The text was updated successfully, but these errors were encountered: