cloud-web-corejs 1.0.54-dev.377 → 1.0.54-dev.379
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -733,7 +733,7 @@ modules = {
|
|
|
733
733
|
baseRefUtil.tableConfig.className == "list-table"
|
|
734
734
|
) {
|
|
735
735
|
if (tableColumns.length) {
|
|
736
|
-
let tableColumn = [tableColumns.length - 1];
|
|
736
|
+
let tableColumn = tableColumns[tableColumns.length - 1];
|
|
737
737
|
if (tableColumn.fixed != "right") {
|
|
738
738
|
newColumns.push({
|
|
739
739
|
width: 47,
|
|
@@ -2687,6 +2687,7 @@ modules = {
|
|
|
2687
2687
|
// if(initFlag)this.fieldSchemaMap = {};
|
|
2688
2688
|
if (rowLength > 0) {
|
|
2689
2689
|
let target = this.getGridTable();
|
|
2690
|
+
if(!target)return
|
|
2690
2691
|
let { fullColumn } = target.getTableColumn();
|
|
2691
2692
|
let allWidgets = [];
|
|
2692
2693
|
let fieldSchemaMap = {};
|