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 b2c68b3 commit 43c572dCopy full SHA for 43c572d
jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/util/AnnotatedText.kt
@@ -58,6 +58,9 @@ internal fun rememberCollapsableText(
58
withStyle(SpanStyle(color = colors.indexColor)) {
59
append(key)
60
}
61
+ withStyle(SpanStyle(color = colors.symbolColor)) {
62
+ append(": ")
63
+ }
64
} else if (parentType != ParentType.ARRAY) {
65
withStyle(SpanStyle(color = colors.keyColor)) {
66
append("\"$key\"")
@@ -75,10 +78,10 @@ internal fun rememberCollapsableText(
75
78
end = keyRange.range.last + 1 + 1
76
79
)
77
80
- }
81
- withStyle(SpanStyle(color = colors.symbolColor)) {
- append(": ")
82
83
84
85
86
87
0 commit comments