Make annotation sortIndex more flexible

(cherry picked from commit af892e5cbd)
This commit is contained in:
Dan Stillman 2023-07-06 19:54:56 -04:00
parent 78865ed2ef
commit 6f506bbc3d

View file

@ -3838,7 +3838,7 @@ for (let name of ['type', 'authorName', 'text', 'comment', 'color', 'pageLabel',
break;
case 'sortIndex':
if (!/^\d{5}\|\d{6}\|\d{5}$/.test(value)) {
if (!/^(\d{5}\|\d{6}\|\d{5}|\d{5}\|\d{8}|\d{8})$/.test(value)) {
throw new Error(`Invalid sortIndex '${value}'`);
}
break;