@compill/admin 1.0.60 → 1.0.61
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/index.cjs.js +1 -3
- package/index.esm.js +1 -3
- package/package.json +1 -1
package/index.cjs.js
CHANGED
@@ -1051,9 +1051,7 @@ function PageTopBarToolbar({
|
|
1051
1051
|
if (!portal || !host) return;
|
1052
1052
|
try {
|
1053
1053
|
if (visible) host.appendChild(portal);else host.removeChild(portal);
|
1054
|
-
} catch (e) {
|
1055
|
-
// console.log(e)
|
1056
|
-
}
|
1054
|
+
} catch (e) {}
|
1057
1055
|
return () => {
|
1058
1056
|
try {
|
1059
1057
|
host.removeChild(portal);
|
package/index.esm.js
CHANGED
@@ -1042,9 +1042,7 @@ function PageTopBarToolbar({
|
|
1042
1042
|
if (!portal || !host) return;
|
1043
1043
|
try {
|
1044
1044
|
if (visible) host.appendChild(portal);else host.removeChild(portal);
|
1045
|
-
} catch (e) {
|
1046
|
-
// console.log(e)
|
1047
|
-
}
|
1045
|
+
} catch (e) {}
|
1048
1046
|
return () => {
|
1049
1047
|
try {
|
1050
1048
|
host.removeChild(portal);
|