We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc892fb commit 0f390ecCopy full SHA for 0f390ec
src/main/java/ml/anon/ui/management/DocumentOverviewView.java
@@ -76,7 +76,7 @@ public class DocumentOverviewView extends BaseView implements UIEvents.PollListe
76
private void init() {
77
78
grid = new Grid<Document>(Document.class);
79
- grid.setColumns("fileName", "version");
+ grid.setColumns("fileName", "version", "state");
80
grid.addComponentColumn(d -> new MLabel(DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM).format(d.getCreated()))).setCaption("Erstellt");
81
grid.addComponentColumn(d -> new MLabel(DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM).format(d.getLastModified()))).setCaption("Letzte Änderung");
82
0 commit comments