mol_plot_all 1.2.227 → 1.2.230
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/node.deps.json +1 -1
- package/node.esm.js +2 -1
- package/node.esm.js.map +1 -1
- package/node.js +2 -1
- package/node.js.map +1 -1
- package/node.test.js +2 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.deps.json +1 -1
- package/web.esm.js +2 -1
- package/web.esm.js.map +1 -1
- package/web.js +2 -1
- package/web.js.map +1 -1
package/web.js
CHANGED
|
@@ -1897,7 +1897,8 @@ var $;
|
|
|
1897
1897
|
if ((error_shower.get(error) ?? this) !== this)
|
|
1898
1898
|
return node;
|
|
1899
1899
|
try {
|
|
1900
|
-
|
|
1900
|
+
const message = error.message || error;
|
|
1901
|
+
node.innerText = message.replace(/^|$/mg, '\xA0\xA0');
|
|
1901
1902
|
}
|
|
1902
1903
|
catch { }
|
|
1903
1904
|
error_shower.set(error, this);
|