Fixed small formatting error
This commit is contained in:
parent
29a667389d
commit
e4a8ef4210
@ -39,7 +39,7 @@ public class ContactListCell extends ListCell<Contact> {
|
|||||||
final var statusLabel = new Label(user.getStatus().toString());
|
final var statusLabel = new Label(user.getStatus().toString());
|
||||||
statusLabel.getStyleClass().add(user.getStatus().toString().toLowerCase());
|
statusLabel.getStyleClass().add(user.getStatus().toString().toLowerCase());
|
||||||
vbox.getChildren().add(statusLabel);
|
vbox.getChildren().add(statusLabel);
|
||||||
} else {
|
} else {
|
||||||
// Member count
|
// Member count
|
||||||
vbox.getChildren().add(new Label(((Group) contact).getContacts().size() + " members"));
|
vbox.getChildren().add(new Label(((Group) contact).getContacts().size() + " members"));
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user