Skip to content
Snippets Groups Projects
Commit 4341801a authored by kushalpandya's avatar kushalpandya Committed by Jarka Kadlecova
Browse files

Fix class name typo

parent 6fad5640
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -2,5 +2,5 @@
import IntegrationSettingsForm from './integration_settings_form';
 
$(() => {
new IntegrationSettingsForm('.js-integration-settings-from');
new IntegrationSettingsForm('.js-integration-settings-form');
});
Loading
Loading
@@ -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' }
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment