react-crud-mobile 1.3.541 → 1.3.542
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.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIIcon.tsx +1 -1
package/dist/index.js
CHANGED
|
@@ -355,7 +355,7 @@ function UIIcon({ scope }) {
|
|
|
355
355
|
};
|
|
356
356
|
let library = import_react_crud_utils4.Utils.nvl(scope.original.library, "ion");
|
|
357
357
|
let icon = name.trim();
|
|
358
|
-
if (icon) return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(import_jsx_runtime7.Fragment, {});
|
|
358
|
+
if (!icon) return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(import_jsx_runtime7.Fragment, {});
|
|
359
359
|
if (name.includes(" ")) {
|
|
360
360
|
let split = name.split(/\s+/);
|
|
361
361
|
library = split[0];
|