Skip to content

Commit

Permalink
fix: show requirements for hypercubes (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
stoffeastrom committed Dec 3, 2019
1 parent 0f5cb2e commit 4e8a0af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apis/nucleus/src/components/Cell.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ const validateTargets = (translator, layout, { targets }) => {
layoutErrors.push({ path, error: hc.qError });
}
if (d.length < minD || m.length < minM) {
requirementsError.push(path);
requirementsError.push({ path });
}
});
const showError = !!(layoutErrors.length || requirementsError.length);
Expand Down

0 comments on commit 4e8a0af

Please sign in to comment.