We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b42219 commit cff38abCopy full SHA for cff38ab
scout-ui/src/object-tree/index.less
@@ -66,3 +66,12 @@ span.caret-placeholder {
66
cursor: pointer;
67
}
68
69
+
70
+// .truncate-jsprimvalue {
71
+// max-width: 75%;
72
+// overflow-x: hidden;
73
+// text-overflow: ellipsis;
74
+// display: inline-block;
75
+// white-space: nowrap;
76
+// margin-bottom: -4px;
77
+// }
scout-ui/src/object-tree/jsprimvalue-view.jade
@@ -1,5 +1,5 @@
1
span.jsprimvalue
2
if (typeof(model.value) === 'string')
3
- | "#{model.value}"
+ | "#[span(class='truncate-jsprimvalue', title="#{model.value}") #{model.value}]"
4
else
5
- = model.value
+ | #[span(class='truncate-jsprimvalue', title="#{model.value}") #{model.value}]
0 commit comments