allow for full sorting, slice and dicing with all options in the UI, and the previous shortcuts. now have a lot more flexibility to slice and dice as desired

This commit is contained in:
Andrej Karpathy
2021-11-16 21:39:43 -08:00
parent abb83effed
commit 8be24dae43
4 changed files with 71 additions and 22 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ const Paper = props => {
const subber = () => fetch("/sub/" + p.id + "/" + prompt("tag to subtract from this paper:"))
.then(response => console.log(response.text()));
const utags = p.utags.map((utxt, ix) => <UTag key={ix} tag={utxt} />);
const similar_url = "/?rank=tags&pid=" + p.id;
const similar_url = "/?rank=pid&pid=" + p.id;
return (
<div class='rel_paper'>
<div class="rel_score">{p.weight.toFixed(2)}</div>