Skip to content

Commit c817d43

Browse files
author
Hassan Radwan
committed
Changing the text overflow behavior for package names in the treemap to show ellipses instead of asterisks
1 parent ef5c458 commit c817d43

File tree

1 file changed

+1
-1
lines changed
  • codepulse/src/main/resources/toserve/widgets/codetreemap

1 file changed

+1
-1
lines changed

codepulse/src/main/resources/toserve/widgets/codetreemap/treemap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@
734734
var clips = [name]
735735
var parts = name.split(sep)
736736
for(var i=0; i<parts.length; i++) clips.push( parts.slice(i).join(sep) )
737-
clips.push("*")
737+
clips.push("\u2026")
738738
return clips
739739
}
740740

0 commit comments

Comments
 (0)