Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vmishenev committed Dec 13, 2022
1 parent 5763166 commit 2fc15fe
Showing 1 changed file with 8 additions and 6 deletions.
Expand Up @@ -606,14 +606,16 @@ open class DefaultPageCreator(
styles = setOf(ContentStyle.RowTitle),
extra = extra
)
sourceSetDependentHint(props.dri, props.sourceSets, kind = ContentKind.SourceSetDependentHint, extra = extra) {
sourceSetDependentHint(
props.dri,
props.sourceSets,
kind = ContentKind.SourceSetDependentHint,
extra = extra
) {

props.forEach {
val propExtra = if(it.isExtension()) mainExtra + SimpleAttr.togglableTarget("Extensions") else mainExtra
group(styles = mainStyles + TextStyle.Block, extra = propExtra) {
+buildSignature(it)
contentForBrief(it, propExtra)
}
+buildSignature(it)
contentForBrief(it)
}
}
}
Expand Down

0 comments on commit 2fc15fe

Please sign in to comment.