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 08a5845 commit 9c34d7dCopy full SHA for 9c34d7d
jetbrains-core/src/software/aws/toolkits/jetbrains/services/cloudwatch/logs/editor/TableUtils.kt
@@ -54,7 +54,7 @@ class LogStreamsDateColumn(
54
55
override fun isCellEditable(item: LogStream?): Boolean = false
56
override fun getRenderer(item: LogStream?): TableCellRenderer = renderer
57
- override fun getComparator(): Comparator<LogStream>? = if (sortable) Comparator.comparing { it.lastEventTimestamp() } else null
+ override fun getComparator(): Comparator<LogStream>? = if (sortable) Comparator.comparing { it.lastEventTimestamp() ?: Long.MIN_VALUE } else null
58
}
59
60
class LogStreamDateColumn(private val format: SyncDateFormat? = null) : ColumnInfo<LogStreamEntry, String>(message("general.time")) {
0 commit comments