Skip to content

Commit

Permalink
Make long property names breakable (#2537)
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnatBeresnev committed Jun 16, 2022
1 parent 933939e commit b783439
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -760,7 +760,12 @@ open class DefaultPageCreator(
headers("Name", "Summary")
)
) { key, props ->
link(key, props.first().dri, kind = ContentKind.Main)
link(
text = key,
address = props.first().dri,
kind = ContentKind.Main,
styles = setOf(ContentStyle.RowTitle)
)
sourceSetDependentHint(props.dri, props.sourceSets, kind = ContentKind.SourceSetDependentHint) {
props.forEach {
+buildSignature(it)
Expand Down

0 comments on commit b783439

Please sign in to comment.