You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by jo...@apache.org on 2021/07/11 18:52:59 UTC

[isis] branch ISIS-2505_Catch_Up_With_Demo_Examples updated: ISIS-2505 All column headers displayed

This is an automated email from the ASF dual-hosted git repository.

joergrade pushed a commit to branch ISIS-2505_Catch_Up_With_Demo_Examples
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/ISIS-2505_Catch_Up_With_Demo_Examples by this push:
     new 1408b7d  ISIS-2505 All column headers displayed
1408b7d is described below

commit 1408b7dcfa2068e2341d97700e9524c4c9c6dd95
Author: Jörg Rade <jo...@kuehne-nagel.com>
AuthorDate: Sun Jul 11 20:52:32 2021 +0200

    ISIS-2505 All column headers displayed
---
 .../org/apache/isis/client/kroviz/core/model/CollectionProperties.kt    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/incubator/clients/kroviz/src/main/kotlin/org/apache/isis/client/kroviz/core/model/CollectionProperties.kt b/incubator/clients/kroviz/src/main/kotlin/org/apache/isis/client/kroviz/core/model/CollectionProperties.kt
index c143cab..e48782b 100644
--- a/incubator/clients/kroviz/src/main/kotlin/org/apache/isis/client/kroviz/core/model/CollectionProperties.kt
+++ b/incubator/clients/kroviz/src/main/kotlin/org/apache/isis/client/kroviz/core/model/CollectionProperties.kt
@@ -32,7 +32,7 @@ class CollectionProperties() {
         val ps = propertyList.size
         val pls = propertyLayoutList.size
         val pds = propertyDescriptionList.size
-        val descriptionsComplete = (pds >= pls) && (pds >= ps)
+        val descriptionsComplete = (pds >= pls) && (ps >= pls)
         return descriptionsComplete
     }