Skip to content

Commit

Permalink
Use revision timestamp in datastore import status dashboard (#3948)
Browse files Browse the repository at this point in the history
  • Loading branch information
jastraat committed Apr 26, 2023
1 parent 1e56fa4 commit d4b089b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/metastore/src/NodeWrapper/Data.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ private function fix() {
*/
public function getModifiedDate() {
$this->fix();
return $this->node->getChangedTime();
// Use revision date because the latest revision date does not
// match the node changed value when there are multiple drafts.
return $this->node->getRevisionCreationTime();
}

/**
Expand Down

0 comments on commit d4b089b

Please sign in to comment.