* Remove , at the end of row in the lastest children in formpanel widget.

This commit is contained in:
liumengyi
2023-11-15 08:51:01 +08:00
parent f0b99466b8
commit 3b60cc69e2
+2 -2
View File
@@ -158,7 +158,7 @@ class formPanel extends panel
set($this->props->pick(array_keys(formBatch::definedPropsList()))),
$this->children(),
jsVar('formBatch', true),
$hiddenFields ? jsVar('hiddenFields', $hiddenFields) : null,
$hiddenFields ? jsVar('hiddenFields', $hiddenFields) : null
);
}
@@ -167,7 +167,7 @@ class formPanel extends panel
set::className($this->prop('formClass')),
set($this->props->pick(array_keys(form::definedPropsList()))),
$this->children(),
$hiddenFields ? jsVar('hiddenFields', $hiddenFields) : null,
$hiddenFields ? jsVar('hiddenFields', $hiddenFields) : null
);
}