Skip to content

Commit

Permalink
fix: fix plot label regression
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreminger committed Jan 7, 2025
1 parent 8c61541 commit 87f8bf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/LatexToSympy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ export class LatexToSympy extends LatexParserVisitor<string | Statement | UnitBl
unitsQueryFunction: rangeFunction.unitsQueryFunction,
inputUnits: this.inputUnits,
inputUnitsLatex: this.inputUnitsLatex,
outputName: rangeFunction.sympy,
outputName: rangeFunction.sympy.match(/,(\S*)\)/)[1],
}
}
} else if (this.functions.length === 1 && (this.functions[0] as UserFunction).name === sympy &&
Expand Down

0 comments on commit 87f8bf0

Please sign in to comment.