Fixed small formatting error

This commit is contained in:
delvh
2020-06-25 12:32:57 +02:00
committed by GitHub
parent 29a667389d
commit e4a8ef4210

View File

@ -39,7 +39,7 @@ public class ContactListCell extends ListCell<Contact> {
final var statusLabel = new Label(user.getStatus().toString());
statusLabel.getStyleClass().add(user.getStatus().toString().toLowerCase());
vbox.getChildren().add(statusLabel);
} else {
} else {
// Member count
vbox.getChildren().add(new Label(((Group) contact).getContacts().size() + " members"));
}