Compare commits

..

No commits in common. "master" and "ssr-metas" have entirely different histories.

2 changed files with 5 additions and 7 deletions

View File

@ -7,7 +7,6 @@
"@eno/iso": "http://localhost:4507/lib/iso.tsx" "@eno/iso": "http://localhost:4507/lib/iso.tsx"
}, },
"tasks": { "tasks": {
"dev": "deno run -A --unstable --reload=http://localhost:4507/ --no-lock app.tsx --dev", "dev": "deno run -A --unstable --reload=http://localhost:4507/ --no-lock app.tsx --dev"
"run": "deno run -A --unstable --reload=http://localhost:4507/ --no-lock app.tsx"
} }
} }

View File

@ -48,14 +48,13 @@ export const Meta =
const lookup = key as MetaKeys const lookup = key as MetaKeys
const valPrev = final[lookup]; const valPrev = final[lookup];
const valCurr = curr[lookup]; const valCurr = curr[lookup];
if(valPrev && valCurr && curr.concatListed)
if(valPrev && !valCurr)
{ {
final[lookup] = curr.dropUnlisted ? "" : valPrev; final[lookup] = valPrev + curr.concatListed + valCurr;
} }
else if(valPrev && valCurr) else if(!valCurr && curr.dropUnlisted)
{ {
final[lookup] = curr.concatListed ? valPrev + curr.concatListed + valCurr : valCurr final[lookup] = "";
} }
else else
{ {