@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/esm/index.js
CHANGED
|
@@ -2215,7 +2215,7 @@ function prettyHandle(id) {
|
|
|
2215
2215
|
try {
|
|
2216
2216
|
const parts = String(id).split(":");
|
|
2217
2217
|
// If there are exactly 3 colons (4 parts), display only the second part
|
|
2218
|
-
if (parts.length
|
|
2218
|
+
if (parts.length >= 3)
|
|
2219
2219
|
return parts[1] || id;
|
|
2220
2220
|
return id;
|
|
2221
2221
|
}
|