Skip to content
This repository has been archived by the owner on Mar 15, 2022. It is now read-only.

[HAL-1377]Unclear column "Date - Time" in log viewer #446

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public int compare(ModelNode node1, ModelNode node2) {
return node1.get(LAST_MODIFIED_TIMESTAMP).asString().compareTo(node2.get(LAST_MODIFIED_TIMESTAMP).asString());
}
});
table.addColumn(lastModifiedColumn, "Date - Time (UTC)");
table.addColumn(lastModifiedColumn, "Last Modified Date - Time (UTC)");

// column: size
TextColumn<ModelNode> sizeColumn = new TextColumn<ModelNode>() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public int compare(ModelNode node1, ModelNode node2) {
return node1.get(LAST_MODIFIED_TIMESTAMP).asString().compareTo(node2.get(LAST_MODIFIED_TIMESTAMP).asString());
}
});
table.addColumn(lastModifiedColumn, "Date - Time (UTC)");
table.addColumn(lastModifiedColumn, "Last Modified Date - Time (UTC)");

// column: size
TextColumn<ModelNode> sizeColumn = new TextColumn<ModelNode>() {
Expand Down