diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2018-07-11 13:20:14 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2018-07-11 13:20:14 +0300 |
commit | 751e1786dfe727c11ddae28e77be6eb88fbfbbf9 (patch) | |
tree | cc9916396e2493f664e3cca8c6732b26bf7b05e8 | |
parent | 418e40bfdfb27a8dcf6faf2c5fdb952aa7b5c8a6 (diff) | |
download | gitlab-ce-dz-manifest-import.tar.gz |
Fix CI/CD importdz-manifest-import
It seems that fronted ci_cd_only variable must be a string
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-rw-r--r-- | app/views/import/_githubish_status.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/import/_githubish_status.html.haml b/app/views/import/_githubish_status.html.haml index 0f641352e99..f0d1e837317 100644 --- a/app/views/import/_githubish_status.html.haml +++ b/app/views/import/_githubish_status.html.haml @@ -53,4 +53,4 @@ .js-importer-status{ data: { jobs_import_path: url_for([:jobs, :import, provider]), import_path: url_for([:import, provider]), - ci_cd_only: has_ci_cd_only_params? } } + ci_cd_only: has_ci_cd_only_params?.to_s } } |