Show amendments change reco in main motion

Fixes a bug which was preventing change recos from amendments to display
in main motions
This commit is contained in:
Sean 2020-09-10 17:35:18 +02:00
parent 5b63809b12
commit b596bf0ca5
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ export class LinenumberingService {
private ignoreInsertedText = false;
// A precompiled regular expression that looks for line number nodes in a HTML string
private getLineNumberRangeRegexp = RegExp(/<span[^>]+data\-line\-number=\"(\d+)\"/, 'g');
private getLineNumberRangeRegexp = RegExp(/<span[^>]+data\-line\-number=\"(\d+)\"/, 'gi');
// .setAttribute and .innerHTML seem to be really slow, so we try to avoid them for static attributes / content
// by creating a static template, cloning it and only set the dynamic attributes each time