Fixing rendering of LaTeX for position changing.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
8ab461ff72
commit
67190e1b4c
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ export default class EditedPosition extends Action {
|
|||
Promise.all(this._renderPromises).then((rendered) => {
|
||||
// Rendered are (potentially) two HTML strings which are defined during rendering
|
||||
this.prevHTML = this.prevHTML ?? rendered[0]
|
||||
this.nextHTML = this.prevHTML ?? rendered[1]
|
||||
this.nextHTML = this.nextHTML ?? rendered[1]
|
||||
resolve(translation.arg(this.prevHTML).arg(this.nextHTML))
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue