diff options
author | Kamil Doległo <kamilok1965@interia.pl> | 2021-01-08 17:02:38 +0100 |
---|---|---|
committer | Kamil Doległo <kamilok1965@interia.pl> | 2021-01-08 17:02:38 +0100 |
commit | 4a0af562bc86ebb84ecd8a90f690214c79df8d40 (patch) | |
tree | c91f51a85f104ebb1d4de180cbdf313d8cf76e8b /plugins/all-modules-page/src | |
parent | 8602e2bb41eb78210677971e7535b0103000b58d (diff) | |
download | dokka-4a0af562bc86ebb84ecd8a90f690214c79df8d40.tar.gz dokka-4a0af562bc86ebb84ecd8a90f690214c79df8d40.tar.bz2 dokka-4a0af562bc86ebb84ecd8a90f690214c79df8d40.zip |
Fix empty table cells on multimodule pages
Diffstat (limited to 'plugins/all-modules-page/src')
-rw-r--r-- | plugins/all-modules-page/src/main/kotlin/MultimodulePageCreator.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/all-modules-page/src/main/kotlin/MultimodulePageCreator.kt b/plugins/all-modules-page/src/main/kotlin/MultimodulePageCreator.kt index 458cf4c1..dec850b2 100644 --- a/plugins/all-modules-page/src/main/kotlin/MultimodulePageCreator.kt +++ b/plugins/all-modules-page/src/main/kotlin/MultimodulePageCreator.kt @@ -57,7 +57,7 @@ class MultimodulePageCreator( val dci = DCI(setOf(dri), ContentKind.Comment) val extraWithAnchor = PropertyContainer.withAll(SymbolAnchorHint(module.name, ContentKind.Main)) row(setOf(dri), emptySet(), styles = emptySet(), extra = extraWithAnchor) { - linkNode(module.name, dri, DCI(setOf(dri), ContentKind.Main), extra = extraWithAnchor) + +linkNode(module.name, dri, DCI(setOf(dri), ContentKind.Main), extra = extraWithAnchor) +ContentGroup( children = if (displayedModuleDocumentation != null) |