Commit 3579b191 authored by Samir Sadyhov's avatar Samir Sadyhov 🤔

fix addRowTable jSynergy.js

parent c9cc8af5
...@@ -992,6 +992,7 @@ function __classSynergy() { ...@@ -992,6 +992,7 @@ function __classSynergy() {
tableProps.properties.forEach(function (x) { tableProps.properties.forEach(function (x) {
let comp = JSON.parse(JSON.stringify(x)); let comp = JSON.parse(JSON.stringify(x));
if(comp.type !== 'label') {
let compModel = comp.data || { let compModel = comp.data || {
id: comp.id, id: comp.id,
type: comp.type type: comp.type
...@@ -1002,6 +1003,7 @@ function __classSynergy() { ...@@ -1002,6 +1003,7 @@ function __classSynergy() {
compModel.____tableBlockIndex____ = '' + tableRowCount; compModel.____tableBlockIndex____ = '' + tableRowCount;
row.push(compModel); row.push(compModel);
}
}); });
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment