Skip to content

Commit

Permalink
build v.1.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
r002 committed Apr 28, 2024
1 parent d554b79 commit 693d31f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion changelog.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[
{
"dt": "2024-04-27",
"version": "1.4.3",
"version": "1.4.4",
"notes": [
"`day boxes` now show different green intensities",
"strip punctuation before indexing names",
Expand Down
2 changes: 1 addition & 1 deletion js/xna.js
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ function genenhancedtip(tweetArr) {
}
const tooltip = [];
for (t of tweetArr) {
const ppl = t.people != null ? ` | ${t.people.map(p=>p.name).join(", ")}` : "";
const ppl = t.people != null ? ` | ${t.people.reverse().map(p=>p.name).join(", ")}` : "";
tooltip.push(`${leftpad(t.id)} | ${genprettydate(t.dt)}\n | ${t.title}\n${ppl}`);
}
return tooltip.reverse().join("\n");
Expand Down

0 comments on commit 693d31f

Please sign in to comment.