From abb871be8938f889e106b7c32c9878799606988b Mon Sep 17 00:00:00 2001 From: William Desportes Date: Mon, 15 Aug 2022 17:20:32 +0200 Subject: [PATCH] Add back some dev comments on Designer objects Signed-off-by: William Desportes --- js/src/designer/objects.js | 5 +++++ 1 file changed, 5 insertions(+) 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;