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 497654d commit 3b6dcc8Copy full SHA for 3b6dcc8
api/src/main/java/io/kafbat/ui/controller/TopicsController.java
@@ -363,7 +363,7 @@ private Comparator<InternalTopic> getComparatorForTopic(
363
case SIZE -> Comparator.comparing(InternalTopic::getSegmentSize);
364
case MESSAGES_COUNT -> Comparator.comparing(
365
InternalTopic::getMessagesCount,
366
- Comparator.nullsLast(Long::compareTo)
+ Comparator.nullsFirst(Long::compareTo)
367
);
368
default -> defaultComparator;
369
};
0 commit comments