diff --git a/main/ui/src/main/java/org/cryptomator/ui/health/CheckListCell.java b/main/ui/src/main/java/org/cryptomator/ui/health/CheckListCell.java index 19dd40051..73afcfed0 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/health/CheckListCell.java +++ b/main/ui/src/main/java/org/cryptomator/ui/health/CheckListCell.java @@ -26,7 +26,7 @@ class CheckListCell extends ListCell { super.updateItem(item, empty); if (item != null) { - setText(item.getTitle()); + setText(item.getCheck().identifier()); // TODO lookup l18n key item.stateProperty().addListener(this::stateChanged); setGraphic(graphicForState(item.getState())); stateIcon.setGlyph(glyphForState(item.getState()));