Release 0.0.12
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
"id": "kosmos-storage-audit",
|
"id": "kosmos-storage-audit",
|
||||||
"title": "Kosmos Storage Audit",
|
"title": "Kosmos Storage Audit",
|
||||||
"description": "Analyzes media references and risky storage locations across Foundry data and public roots.",
|
"description": "Analyzes media references and risky storage locations across Foundry data and public roots.",
|
||||||
"version": "0.0.11",
|
"version": "0.0.12",
|
||||||
"compatibility": {
|
"compatibility": {
|
||||||
"minimum": "13",
|
"minimum": "13",
|
||||||
"verified": "13"
|
"verified": "13"
|
||||||
|
|||||||
@@ -95,9 +95,13 @@ function resolvePackageRelativeReference(rawValue, source) {
|
|||||||
function dedupeReferences(references) {
|
function dedupeReferences(references) {
|
||||||
const seen = new Set();
|
const seen = new Set();
|
||||||
return references.filter(reference => {
|
return references.filter(reference => {
|
||||||
|
const trailKey = Array.isArray(reference.sourceTrail)
|
||||||
|
? reference.sourceTrail.map(node => node.uuid ?? node.label ?? "").join(">")
|
||||||
|
: "";
|
||||||
const key = [
|
const key = [
|
||||||
reference.sourceType,
|
reference.sourceType,
|
||||||
reference.sourceLabel,
|
reference.sourceLabel,
|
||||||
|
trailKey,
|
||||||
reference.normalized?.locator ?? "",
|
reference.normalized?.locator ?? "",
|
||||||
reference.rawValue
|
reference.rawValue
|
||||||
].join("|");
|
].join("|");
|
||||||
|
|||||||
@@ -86,7 +86,7 @@
|
|||||||
|
|
||||||
.storage-audit__hero {
|
.storage-audit__hero {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: minmax(0, 1fr) minmax(14rem, 16rem);
|
grid-template-columns: minmax(0, 1fr);
|
||||||
gap: 1rem 1.25rem;
|
gap: 1rem 1.25rem;
|
||||||
align-items: start;
|
align-items: start;
|
||||||
}
|
}
|
||||||
@@ -124,6 +124,8 @@
|
|||||||
gap: 0.75rem;
|
gap: 0.75rem;
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 18rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.storage-audit__actions .button {
|
.storage-audit__actions .button {
|
||||||
@@ -293,12 +295,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 1100px) {
|
@media (max-width: 1100px) {
|
||||||
.storage-audit__hero {
|
|
||||||
grid-template-columns: minmax(0, 1fr);
|
|
||||||
}
|
|
||||||
|
|
||||||
.storage-audit__actions {
|
.storage-audit__actions {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
max-width: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user