Pre-conf work 2025

This commit is contained in:
2025-09-02 08:25:41 -04:00
parent 550021a18e
commit 4acbec6288
75 changed files with 8047 additions and 5228 deletions

View File

@@ -434,7 +434,7 @@ export function validateParameters(
// Unknown parameter type
issues.push({
severity: "warning",
message: `Unknown parameter type '${paramDef.type}' for '${paramDef.name}'`,
message: `Unknown parameter type '${String(paramDef.type)}' for '${paramDef.name}'`,
category: "parameter",
field,
stepId,
@@ -723,9 +723,7 @@ export function groupIssuesByEntity(
issues.forEach((issue) => {
const entityId = issue.actionId ?? issue.stepId ?? "experiment";
if (!grouped[entityId]) {
grouped[entityId] = [];
}
grouped[entityId] ??= [];
grouped[entityId].push(issue);
});