Make annotation sortIndex more flexible
This commit is contained in:
parent
b6d0ad3e05
commit
af892e5cbd
1 changed files with 1 additions and 1 deletions
|
@ -3825,7 +3825,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;
|
||||
|
|
Loading…
Reference in a new issue