Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-08-30 13:20:34 +0300
committerPhil Hughes <me@iamphill.com>2017-08-30 13:20:34 +0300
commit75c4d2659bbcd51efc44123f3ab2c6496fa0eee2 (patch)
tree3b64f1f2d6c532c4472be1ff50662774a3299fa6 /app/helpers/issuables_helper.rb
parenta8460f215cc1949b993e774dc00bad0b506abcfa (diff)
parent978b4b9cc0374c9cb5680612fe4154f393bbba9c (diff)
Merge branch 'master' into breadcrumbs-improvements
Diffstat (limited to 'app/helpers/issuables_helper.rb')
-rw-r--r--app/helpers/issuables_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/issuables_helper.rb b/app/helpers/issuables_helper.rb
index eba8aed05d3..9e5992bf68f 100644
--- a/app/helpers/issuables_helper.rb
+++ b/app/helpers/issuables_helper.rb
@@ -238,7 +238,7 @@ module IssuablesHelper
end
def updated_at_by(issuable)
- return {} unless issuable.is_edited?
+ return {} unless issuable.edited?
{
updatedAt: issuable.updated_at.to_time.iso8601,