@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/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 === 4)
2218
+ if (parts.length >= 3)
2219
2219
  return parts[1] || id;
2220
2220
  return id;
2221
2221
  }