diff options
author | kushalpandya <kushal@gitlab.com> | 2017-05-30 16:55:50 +0530 |
---|---|---|
committer | Jarka Kadlecova <jarka@gitlab.com> | 2017-06-01 07:47:16 +0200 |
commit | 4341801a416a30319cdf646c647b03b629491e05 (patch) | |
tree | 0f654dfdb2679201d87333e8a642a059631c2c01 /app | |
parent | 6fad5640e73837ba148b0ed005205adff91d8a4e (diff) | |
download | gitlab-ce-4341801a416a30319cdf646c647b03b629491e05.tar.gz |
Fix class name typo
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/javascripts/integrations/index.js | 2 | ||||
-rw-r--r-- | app/views/projects/services/_form.html.haml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/integrations/index.js b/app/assets/javascripts/integrations/index.js index 82255fd284e..69db098d981 100644 --- a/app/assets/javascripts/integrations/index.js +++ b/app/assets/javascripts/integrations/index.js @@ -2,5 +2,5 @@ import IntegrationSettingsForm from './integration_settings_form'; $(() => { - new IntegrationSettingsForm('.js-integration-settings-from'); + new IntegrationSettingsForm('.js-integration-settings-form'); }); diff --git a/app/views/projects/services/_form.html.haml b/app/views/projects/services/_form.html.haml index 0d7002f6ba5..8eeed5cda09 100644 --- a/app/views/projects/services/_form.html.haml +++ b/app/views/projects/services/_form.html.haml @@ -9,7 +9,7 @@ %p= @service.description .col-lg-9 - = form_for(@service, as: :service, url: namespace_project_service_path(@project.namespace, @project, @service.to_param), method: :put, html: { class: 'gl-show-field-errors form-horizontal js-integration-settings-from', data: { "can-test" => "#{@service.can_test?}" } }) do |form| + = form_for(@service, as: :service, url: namespace_project_service_path(@project.namespace, @project, @service.to_param), method: :put, html: { class: 'gl-show-field-errors form-horizontal js-integration-settings-form', data: { "can-test" => "#{@service.can_test?}" } }) do |form| = render 'shared/service_settings', form: form, subject: @service .footer-block.row-content-block %button.btn.btn-save{ type: 'submit' } |