diff --git a/js/src/designer/objects.js b/js/src/designer/objects.js index 6bb40372f4..b310565346 100644 --- a/js/src/designer/objects.js +++ b/js/src/designer/objects.js @@ -1,6 +1,8 @@ // eslint-disable-next-line no-unused-vars var DesignerObjects = { PdfPage: function (dbName, pageDescr, tblCords) { + // no dot set the auto increment before put() in the database + // issue #12900 // eslint-disable-next-line no-unused-vars var pgNr; this.dbName = dbName; @@ -8,6 +10,9 @@ var DesignerObjects = { this.tblCords = tblCords; }, TableCoordinate: function (dbName, tableName, pdfPgNr, x, y) { + // no dot set the auto increment before put() in the database + // issue #12900 + // var id; this.dbName = dbName; this.tableName = tableName; this.pdfPgNr = pdfPgNr;