@bian-womp/spark-workbench 0.3.38 → 0.3.39
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/lib/cjs/index.cjs +1 -1
- package/lib/cjs/index.cjs.map +1 -1
- package/lib/esm/index.js +1 -1
- package/lib/esm/index.js.map +1 -1
- package/package.json +4 -4
package/lib/cjs/index.cjs
CHANGED
|
@@ -2217,7 +2217,7 @@ function prettyHandle(id) {
|
|
|
2217
2217
|
try {
|
|
2218
2218
|
const parts = String(id).split(":");
|
|
2219
2219
|
// If there are exactly 3 colons (4 parts), display only the second part
|
|
2220
|
-
if (parts.length
|
|
2220
|
+
if (parts.length >= 3)
|
|
2221
2221
|
return parts[1] || id;
|
|
2222
2222
|
return id;
|
|
2223
2223
|
}
|