Fix the incorrect limit location value of MathIntergral #2512 (#2513)

This commit is contained in:
yaokailun
2024-01-04 10:42:05 +08:00
committed by GitHub
parent e779f6ea62
commit 75715fde37
4 changed files with 7 additions and 7 deletions

View File

@ -6,9 +6,9 @@ class MathLimitLocationAttributes extends XmlAttributeComponent<{ readonly value
}
export class MathLimitLocation extends XmlComponent {
public constructor() {
public constructor(value?: string) {
super("m:limLoc");
this.root.push(new MathLimitLocationAttributes({ value: "undOvr" }));
this.root.push(new MathLimitLocationAttributes({ value: value || "undOvr" }));
}
}