Skip to content

Commit

Permalink
id bug
Browse files Browse the repository at this point in the history
  • Loading branch information
menocsk27 committed Nov 12, 2024
1 parent 6b72a38 commit 2a70a26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/public/js/proof/rules/cd/linear/linear.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export class LinearCD {

let maxLength = 0;
variables.forEach((v, i) => {
const l = printValue(values[i], v, output.append("span").attr("id", `#${plot}-sol-${v}`).attr("class", "text-eq premise"));
const l = printValue(values[i], v, output.append("span").attr("id", `${plot}-sol-${v}`).attr("class", "text-eq premise"));
if (l > maxLength) {
maxLength = l;
}
Expand Down

0 comments on commit 2a70a26

Please sign in to comment.