This commit is contained in:
2024-08-27 17:27:58 +02:00
parent 22d99ba39e
commit 3b8aeb3b87
2 changed files with 2 additions and 2 deletions

View File

@@ -387,7 +387,7 @@ const onChangeTab = (index) => {
const setPosNumbers = () => {
let index = 1
let rows = itemInfo.value.rows.map(row => {
if(row.mode !== 'pagebreak') {
if(row.mode !== 'pagebreak' && row.mode !== 'title') {
row.pos = index
index += 1
}