fix(album_releases.psql): update subtext delimiter to be consistent with other delimiters

This commit is contained in:
Cory Dransfeldt 2025-04-11 22:09:58 -07:00
parent 2dc119415d
commit 754f06f516
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "1.3.16", "version": "1.3.17",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "1.3.16", "version": "1.3.17",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"minisearch": "^7.1.2", "minisearch": "^7.1.2",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "1.3.16", "version": "1.3.17",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"engines": { "engines": {

View file

@ -12,7 +12,7 @@ SELECT
'image', CONCAT('/', df.filename_disk), 'image', CONCAT('/', df.filename_disk),
'url', COALESCE(a.release_link, ar.slug), 'url', COALESCE(a.release_link, ar.slug),
'alt', CONCAT(a.name, ' by ', ar.name_string), 'alt', CONCAT(a.name, ' by ', ar.name_string),
'subtext', CONCAT(ar.name_string, ' / ', TO_CHAR(a.release_date, 'Mon FMDD, YYYY')) 'subtext', CONCAT(ar.name_string, ' ', TO_CHAR(a.release_date, 'Mon FMDD, YYYY'))
) AS grid ) AS grid
FROM FROM
albums a albums a