Compare commits

..

No commits in common. "2a30aa55088b80877fbb48f5b8a7e910a825c4c1" and "e8f36ad9e442bcf9b77245c31c1ebd8114d4ba9c" have entirely different histories.

4 changed files with 5 additions and 6 deletions

4
package-lock.json generated
View File

@ -1,11 +1,11 @@
{
"name": "traxxx-web",
"version": "0.39.8",
"version": "0.39.7",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"version": "0.39.8",
"version": "0.39.7",
"dependencies": {
"@brillout/json-serializer": "^0.5.8",
"@dicebear/collection": "^7.0.5",

View File

@ -86,7 +86,7 @@
"overrides": {
"vite": "$vite"
},
"version": "0.39.8",
"version": "0.39.7",
"imports": {
"#/*": "./*.js"
}

2
static

@ -1 +1 @@
Subproject commit aeef9c536d4b821f0d20260624e7024060f2f2b0
Subproject commit ee6b2e5a5b28a5a0378307a2f3cb8896cf11e12b

View File

@ -51,13 +51,12 @@ const propProcessors = {
return format(sceneInfo.effectiveDate, dateFormat);
}
return null;
return '';
},
};
function curateValue(value, item) {
return [].concat(value) // account for both arrays (actors, tags) and strings (title, channel)
.filter((listValue) => !!listValue)
.slice(0, item.limit || Infinity)
.map((listValue) => (item.slugify ? slugify(listValue, item.slugify) : listValue))
.map((listValue) => ellipsis(listValue, item.slice || Infinity, item.ellipsis || ''))