From 751e1786dfe727c11ddae28e77be6eb88fbfbbf9 Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Wed, 11 Jul 2018 13:20:14 +0300 Subject: Fix CI/CD import It seems that fronted ci_cd_only variable must be a string Signed-off-by: Dmitriy Zaporozhets --- app/views/import/_githubish_status.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } } -- cgit v1.2.1