@esvndev/es-react-config-setting 1.0.44 → 1.0.45

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/dist/index.mjs CHANGED
@@ -11608,7 +11608,7 @@ const SettingApp = (props) => {
11608
11608
  };
11609
11609
  //hàm tạo các thông số cấu hình và cài đặt
11610
11610
  const _renderView = () => {
11611
- return (settingData && settingData.data && settingData.data.length > 0 ? settingData.data.map((item, index) => {
11611
+ return (settingData && settingData.length > 0 ? settingData.map((item, index) => {
11612
11612
  return (jsxs("div", { className: "setting-section", children: [jsx("div", { className: "setting-section-label", children: jsx("div", { className: "", children: jsx("span", { children: item.name }) }) }), item.description ?
11613
11613
  jsx("div", { className: "setting-section-desc", children: jsx("div", { className: "", children: jsx("span", { children: item.description }) }) })
11614
11614
  : null, item.data ?