tntd 1.4.3 → 1.4.4
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.
- package/components/QueryForm/index.js +2 -1
- package/dist/stats.json +68 -68
- package/dist/tntd.js +1 -1
- package/es/QueryForm/index.js +2 -1
- package/lib/QueryForm/index.js +2 -1
- package/package.json +1 -1
package/es/QueryForm/index.js
CHANGED
|
@@ -345,8 +345,9 @@ function (_React$PureComponent) {
|
|
|
345
345
|
renderActions = _this$props4.renderActions;
|
|
346
346
|
this.updateFieldHeight();
|
|
347
347
|
this.form.on('search', this.search); // 未设置第一行显示数量且禁止了展开操作 或 自定义了操作区域,则不需要处理展开计算逻辑
|
|
348
|
+
// || renderActions
|
|
348
349
|
|
|
349
|
-
if (!showFieldCount && !showExpand
|
|
350
|
+
if (!showFieldCount && !showExpand) {
|
|
350
351
|
return;
|
|
351
352
|
}
|
|
352
353
|
|
package/lib/QueryForm/index.js
CHANGED
|
@@ -374,8 +374,9 @@ function (_React$PureComponent) {
|
|
|
374
374
|
renderActions = _this$props4.renderActions;
|
|
375
375
|
this.updateFieldHeight();
|
|
376
376
|
this.form.on('search', this.search); // 未设置第一行显示数量且禁止了展开操作 或 自定义了操作区域,则不需要处理展开计算逻辑
|
|
377
|
+
// || renderActions
|
|
377
378
|
|
|
378
|
-
if (!showFieldCount && !showExpand
|
|
379
|
+
if (!showFieldCount && !showExpand) {
|
|
379
380
|
return;
|
|
380
381
|
}
|
|
381
382
|
|