color of new badge should be red

This commit is contained in:
jmacxx 2021-03-11 11:36:21 -06:00
parent cc56470b2f
commit 35f6ea2508
No known key found for this signature in database
GPG key ID: 155297BABFE94A1B

View file

@ -964,7 +964,7 @@ public abstract class DisputeView extends ActivatableView<VBox, Void> {
badge.setPosition(Pos.TOP_RIGHT);
badge.setVisible(item.isNew());
badge.setText("New");
badge.getStyleClass().add("auto-conf");
badge.getStyleClass().add("new");
newBadgeByDispute.put(item.getId(), badge);
HBox hBox = new HBox(button, badge);
setGraphic(hBox);