diff options
author | Phil Hughes <me@iamphill.com> | 2017-08-08 14:25:00 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2017-08-15 16:09:36 +0100 |
commit | 554afea059446384783f3c68c09ac56afa0e7d49 (patch) | |
tree | 950495ef2a046ccf514dfeab8cacb38b7e817497 /app/helpers/version_check_helper.rb | |
parent | 0ec87b3bf0ac27af5f5fedf97d51c8b14b050f50 (diff) | |
download | gitlab-ce-554afea059446384783f3c68c09ac56afa0e7d49.tar.gz |
Fix race condition with dispatcher.jsdispatcher-race-condition-fix
The dispatcher was trying to create a new instance of a class that is loaded in a file after main.js which would cause the filtered search to not work on issues. This would only happen on the first load when the JS is not cached. If the JS is cached, then everything will be fine.
Diffstat (limited to 'app/helpers/version_check_helper.rb')
-rw-r--r-- | app/helpers/version_check_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/version_check_helper.rb b/app/helpers/version_check_helper.rb index 3b175251446..456598b4c28 100644 --- a/app/helpers/version_check_helper.rb +++ b/app/helpers/version_check_helper.rb @@ -2,7 +2,7 @@ module VersionCheckHelper def version_status_badge if Rails.env.production? && current_application_settings.version_check_enabled image_url = VersionCheck.new.url - image_tag image_url, class: 'js-version-status-badge', lazy: false + image_tag image_url, class: 'js-version-status-badge' end end end |