Compare commits
No commits in common. "master" and "ssr-metas" have entirely different histories.
@ -7,7 +7,6 @@
|
||||
"@eno/iso": "http://localhost:4507/lib/iso.tsx"
|
||||
},
|
||||
"tasks": {
|
||||
"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"
|
||||
"dev": "deno run -A --unstable --reload=http://localhost:4507/ --no-lock app.tsx --dev"
|
||||
}
|
||||
}
|
@ -48,14 +48,13 @@ export const Meta =
|
||||
const lookup = key as MetaKeys
|
||||
const valPrev = final[lookup];
|
||||
const valCurr = curr[lookup];
|
||||
|
||||
if(valPrev && !valCurr)
|
||||
if(valPrev && valCurr && curr.concatListed)
|
||||
{
|
||||
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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user