Skip to content

Commit 0f390ec

Browse files
committed
State column
1 parent bc892fb commit 0f390ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/ml/anon/ui/management/DocumentOverviewView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public class DocumentOverviewView extends BaseView implements UIEvents.PollListe
7676
private void init() {
7777

7878
grid = new Grid<Document>(Document.class);
79-
grid.setColumns("fileName", "version");
79+
grid.setColumns("fileName", "version", "state");
8080
grid.addComponentColumn(d -> new MLabel(DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM).format(d.getCreated()))).setCaption("Erstellt");
8181
grid.addComponentColumn(d -> new MLabel(DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM).format(d.getLastModified()))).setCaption("Letzte Änderung");
8282

0 commit comments

Comments
 (0)