sort by balance desc, base_fee asc, points desc; update terms description
This commit is contained in:
@@ -371,7 +371,7 @@ function getFiltered() {
|
|||||||
return allServers
|
return allServers
|
||||||
.filter(d => withTor ? true : !d.onion)
|
.filter(d => withTor ? true : !d.onion)
|
||||||
.filter(d => (d.url + " " + (d.info||"")).toLowerCase().includes(q.toLowerCase()))
|
.filter(d => (d.url + " " + (d.info||"")).toLowerCase().includes(q.toLowerCase()))
|
||||||
.sort((a, b) => (b.balance||0) - (a.balance||0) || (b.base_fee||0) - (a.base_fee||0));
|
.sort((a, b) => (b.balance||0) - (a.balance||0) || (a.base_fee||0) - (b.base_fee||0) || (b.points||0) - (a.points||0));
|
||||||
}
|
}
|
||||||
|
|
||||||
function render() {
|
function render() {
|
||||||
|
|||||||
@@ -116,7 +116,7 @@ footer a{color:var(--accent);text-decoration:none}
|
|||||||
|
|
||||||
<section class="info-section">
|
<section class="info-section">
|
||||||
<h2>2. Ranking</h2>
|
<h2>2. Ranking</h2>
|
||||||
<p class="sub">Servers are sorted by descending balance, then by descending base fee for ties. Points are a separate metric earned through WeTime participation.</p>
|
<p class="sub">Servers are sorted by descending balance, then by ascending base fee for ties, then by descending points.</p>
|
||||||
<div class="info-grid">
|
<div class="info-grid">
|
||||||
<div class="info-block">
|
<div class="info-block">
|
||||||
<span class="ic">01</span>
|
<span class="ic">01</span>
|
||||||
|
|||||||
Reference in New Issue
Block a user