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",
|
||||
"version": "0.39.7",
|
||||
"version": "0.39.8",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"version": "0.39.7",
|
||||
"version": "0.39.8",
|
||||
"dependencies": {
|
||||
"@brillout/json-serializer": "^0.5.8",
|
||||
"@dicebear/collection": "^7.0.5",
|
||||
|
||||
@@ -86,7 +86,7 @@
|
||||
"overrides": {
|
||||
"vite": "$vite"
|
||||
},
|
||||
"version": "0.39.7",
|
||||
"version": "0.39.8",
|
||||
"imports": {
|
||||
"#/*": "./*.js"
|
||||
}
|
||||
|
||||
2
static
2
static
Submodule static updated: ee6b2e5a5b...aeef9c536d
@@ -51,12 +51,13 @@ const propProcessors = {
|
||||
return format(sceneInfo.effectiveDate, dateFormat);
|
||||
}
|
||||
|
||||
return '';
|
||||
return null;
|
||||
},
|
||||
};
|
||||
|
||||
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 || ''))
|
||||
|
||||
Reference in New Issue
Block a user