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);