diff options
author | Phil Hughes <me@iamphill.com> | 2017-10-20 13:00:47 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2017-10-23 10:47:23 +0100 |
commit | 5f988a726ecef14dc6def18883f6808e01f59535 (patch) | |
tree | 645cead7c1eccbfa3cb46ec8d46980a22c157eef | |
parent | 4699cf77b6a0f5261ae382ac1a55882424efe4fb (diff) | |
download | gitlab-ce-5f988a726ecef14dc6def18883f6808e01f59535.tar.gz |
fixed eslint :see_no_evil:
-rw-r--r-- | app/assets/javascripts/repo/helpers/repo_helper.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/assets/javascripts/repo/helpers/repo_helper.js b/app/assets/javascripts/repo/helpers/repo_helper.js index 9e53ffe9a6f..6f62bde4964 100644 --- a/app/assets/javascripts/repo/helpers/repo_helper.js +++ b/app/assets/javascripts/repo/helpers/repo_helper.js @@ -1,4 +1,3 @@ -import { convertPermissionToBoolean } from '../../lib/utils/common_utils'; import Service from '../services/repo_service'; import Store from '../stores/repo_store'; import Flash from '../../flash'; @@ -240,8 +239,7 @@ const RepoHelper = { return Store.openedFiles.find(file => file.url === path); }, - loadingError(e) { - console.log(e); + loadingError() { Flash('Unable to load this content at this time.'); }, |