From 68de06687fcb238feba611628141b140c0adb293 Mon Sep 17 00:00:00 2001 From: guy Date: Fri, 14 May 2021 21:53:25 +0800 Subject: [PATCH] bugfix --- src/core/platform/web/config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/core/platform/web/config.js b/src/core/platform/web/config.js index c75662ae6..6884691b0 100644 --- a/src/core/platform/web/config.js +++ b/src/core/platform/web/config.js @@ -23,7 +23,9 @@ BI.prepares.push(function () { if (supportFlex) { return BI.extend({}, ob, {type: "bi.flex_horizontal"}); } - return BI.extend({}, ob, {type: "bi.table_adapt"}); + return BI.extend({ + scrollx: true + }, ob, {type: "bi.inline"}); }); BI.Plugin.configWidget("bi.center_adapt", function (ob) { var supportFlex = isSupportFlex(), justOneItem = (ob.items && ob.items.length <= 1);