fix: filtering gap in associated media
This commit is contained in:
parent
bce70b8e4e
commit
0ced0001ff
4 changed files with 29 additions and 23 deletions
24
package-lock.json
generated
24
package-lock.json
generated
|
@ -2906,9 +2906,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/caniuse-lite": {
|
||||
"version": "1.0.30001684",
|
||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001684.tgz",
|
||||
"integrity": "sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ==",
|
||||
"version": "1.0.30001685",
|
||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001685.tgz",
|
||||
"integrity": "sha512-e/kJN1EMyHQzgcMEEgoo+YTCO1NGCmIYHk5Qk8jT6AazWemS5QFKJ5ShCJlH3GZrNIdZofcNCEwZqbMjjKzmnA==",
|
||||
"funding": [
|
||||
{
|
||||
"type": "opencollective",
|
||||
|
@ -3592,9 +3592,9 @@
|
|||
"license": "MIT"
|
||||
},
|
||||
"node_modules/electron-to-chromium": {
|
||||
"version": "1.5.67",
|
||||
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.67.tgz",
|
||||
"integrity": "sha512-nz88NNBsD7kQSAGGJyp8hS6xSPtWwqNogA0mjtc2nUYeEf3nURK9qpV18TuBdDmEDgVWotS8Wkzf+V52dSQ/LQ==",
|
||||
"version": "1.5.68",
|
||||
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.68.tgz",
|
||||
"integrity": "sha512-FgMdJlma0OzUYlbrtZ4AeXjKxKPk6KT8WOP8BjcqxWtlg8qyJQjRzPJzUtUn5GBg1oQ26hFs7HOOHJMYiJRnvQ==",
|
||||
"license": "ISC"
|
||||
},
|
||||
"node_modules/emmet": {
|
||||
|
@ -7601,9 +7601,9 @@
|
|||
"optional": true
|
||||
},
|
||||
"node_modules/type-fest": {
|
||||
"version": "4.29.0",
|
||||
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.29.0.tgz",
|
||||
"integrity": "sha512-RPYt6dKyemXJe7I6oNstcH24myUGSReicxcHTvCLgzm4e0n8y05dGvcGB15/SoPRBmhlMthWQ9pvKyL81ko8nQ==",
|
||||
"version": "4.30.0",
|
||||
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.30.0.tgz",
|
||||
"integrity": "sha512-G6zXWS1dLj6eagy6sVhOMQiLtJdxQBHIA9Z6HFUNLOlr6MFOgzV8wvmidtPONfPtEUv0uZsy77XJNzTAfwPDaA==",
|
||||
"license": "(MIT OR CC0-1.0)",
|
||||
"engines": {
|
||||
"node": ">=16"
|
||||
|
@ -8215,9 +8215,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/vscode-css-languageservice": {
|
||||
"version": "6.3.1",
|
||||
"resolved": "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.3.1.tgz",
|
||||
"integrity": "sha512-1BzTBuJfwMc3A0uX4JBdJgoxp74cjj4q2mDJdp49yD/GuAq4X0k5WtK6fNcMYr+FfJ9nqgR6lpfCSZDkARJ5qQ==",
|
||||
"version": "6.3.2",
|
||||
"resolved": "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.3.2.tgz",
|
||||
"integrity": "sha512-GEpPxrUTAeXWdZWHev1OJU9lz2Q2/PPBxQ2TIRmLGvQiH3WZbqaNoute0n0ewxlgtjzTW3AKZT+NHySk5Rf4Eg==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
import { parseISO, format } from "date-fns";
|
||||
import { isBefore, parseISO, format } from "date-fns";
|
||||
import IconMapper from "@components/IconMapper.astro";
|
||||
|
||||
const {
|
||||
|
@ -56,7 +56,7 @@ const sections = [
|
|||
icon: "article",
|
||||
cssClass: "article",
|
||||
label: "Related post(s)",
|
||||
items: posts || [],
|
||||
items: posts?.filter((post) => isBefore(new Date(post.date), new Date())) || [],
|
||||
},
|
||||
{
|
||||
key: "shows",
|
||||
|
|
|
@ -31,7 +31,7 @@ const link = links[0];
|
|||
</h2>
|
||||
<p>
|
||||
<span class="music">Top artist this week:</span>
|
||||
<a href={artist.artist_url} data-astro-prefetch>{artist.artist_name}</a>
|
||||
<a href={artist.artist_url} data-astro-prefetch>{artist.artist_name}</a> with <strong class="highlight-text">{artist.plays} plays</strong>
|
||||
</p>
|
||||
<p>
|
||||
<span class="music">Top track this week:</span>
|
||||
|
|
|
@ -593,6 +593,9 @@
|
|||
{
|
||||
"loc": "https://coryd.dev/posts/2018/senators-press-wireless-carriers-on-mobile-throttling"
|
||||
},
|
||||
{
|
||||
"loc": "https://coryd.dev/posts/2024/2024-in-review"
|
||||
},
|
||||
{
|
||||
"loc": "https://coryd.dev/posts/2019/australian-political-parties-hacked"
|
||||
},
|
||||
|
@ -812,6 +815,9 @@
|
|||
{
|
||||
"loc": "https://coryd.dev/posts/2024/the-amount-of-money-spotify-makes-should-be-close-to-zero"
|
||||
},
|
||||
{
|
||||
"loc": "https://coryd.dev/posts/2024/a-year-of-blocking-ai-crawlers"
|
||||
},
|
||||
{
|
||||
"loc": "https://coryd.dev/posts/2017/the-equifax-breach-is-a-disaster"
|
||||
},
|
||||
|
@ -8820,10 +8826,16 @@
|
|||
"loc": "https://coryd.dev/watching/shows/81239"
|
||||
},
|
||||
{
|
||||
"loc": "https://coryd.dev/watching/shows/688"
|
||||
"loc": "https://coryd.dev/watching/shows/157741"
|
||||
},
|
||||
{
|
||||
"loc": "https://coryd.dev/watching/shows/157741"
|
||||
"loc": "https://coryd.dev/watching/shows/113962"
|
||||
},
|
||||
{
|
||||
"loc": "https://coryd.dev/watching/shows/90228"
|
||||
},
|
||||
{
|
||||
"loc": "https://coryd.dev/watching/shows/688"
|
||||
},
|
||||
{
|
||||
"loc": "https://coryd.dev/watching/shows/136311"
|
||||
|
@ -8831,15 +8843,9 @@
|
|||
{
|
||||
"loc": "https://coryd.dev/watching/shows/125988"
|
||||
},
|
||||
{
|
||||
"loc": "https://coryd.dev/watching/shows/90228"
|
||||
},
|
||||
{
|
||||
"loc": "https://coryd.dev/watching/shows/124364"
|
||||
},
|
||||
{
|
||||
"loc": "https://coryd.dev/watching/shows/113962"
|
||||
},
|
||||
{
|
||||
"loc": "https://coryd.dev/watching/shows/60694"
|
||||
},
|
||||
|
|
Reference in a new issue