<@U41021CCB> Actually, you already have a `Boolean...
# tornadofx
e
@nimakro Actually, you already have a
BooleanProperty
, you just need to specify the type. Do
val hasNextRevision: BooleanProperty = bind { item?.hasNextRevisionProperty }
. Also be aware, you have a typo in the
hasPrevRevision
binding, you're binding towards the next revision property there as well 🙂