Compare commits
2 Commits
e8f36ad9e4
...
2a30aa5508
| Author | SHA1 | Date | |
|---|---|---|---|
| 2a30aa5508 | |||
| 8f9baf6bc5 |
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,11 +1,11 @@
|
|||||||
{
|
{
|
||||||
"name": "traxxx-web",
|
"name": "traxxx-web",
|
||||||
"version": "0.39.7",
|
"version": "0.39.8",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"version": "0.39.7",
|
"version": "0.39.8",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@brillout/json-serializer": "^0.5.8",
|
"@brillout/json-serializer": "^0.5.8",
|
||||||
"@dicebear/collection": "^7.0.5",
|
"@dicebear/collection": "^7.0.5",
|
||||||
|
|||||||
@@ -86,7 +86,7 @@
|
|||||||
"overrides": {
|
"overrides": {
|
||||||
"vite": "$vite"
|
"vite": "$vite"
|
||||||
},
|
},
|
||||||
"version": "0.39.7",
|
"version": "0.39.8",
|
||||||
"imports": {
|
"imports": {
|
||||||
"#/*": "./*.js"
|
"#/*": "./*.js"
|
||||||
}
|
}
|
||||||
|
|||||||
2
static
2
static
Submodule static updated: ee6b2e5a5b...aeef9c536d
@@ -51,12 +51,13 @@ const propProcessors = {
|
|||||||
return format(sceneInfo.effectiveDate, dateFormat);
|
return format(sceneInfo.effectiveDate, dateFormat);
|
||||||
}
|
}
|
||||||
|
|
||||||
return '';
|
return null;
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
function curateValue(value, item) {
|
function curateValue(value, item) {
|
||||||
return [].concat(value) // account for both arrays (actors, tags) and strings (title, channel)
|
return [].concat(value) // account for both arrays (actors, tags) and strings (title, channel)
|
||||||
|
.filter((listValue) => !!listValue)
|
||||||
.slice(0, item.limit || Infinity)
|
.slice(0, item.limit || Infinity)
|
||||||
.map((listValue) => (item.slugify ? slugify(listValue, item.slugify) : listValue))
|
.map((listValue) => (item.slugify ? slugify(listValue, item.slugify) : listValue))
|
||||||
.map((listValue) => ellipsis(listValue, item.slice || Infinity, item.ellipsis || ''))
|
.map((listValue) => ellipsis(listValue, item.slice || Infinity, item.ellipsis || ''))
|
||||||
|
|||||||
Reference in New Issue
Block a user