Fix class name typo
This commit is contained in:
parent
6fad5640e7
commit
4341801a41
2 changed files with 2 additions and 2 deletions
|
@ -2,5 +2,5 @@
|
||||||
import IntegrationSettingsForm from './integration_settings_form';
|
import IntegrationSettingsForm from './integration_settings_form';
|
||||||
|
|
||||||
$(() => {
|
$(() => {
|
||||||
new IntegrationSettingsForm('.js-integration-settings-from');
|
new IntegrationSettingsForm('.js-integration-settings-form');
|
||||||
});
|
});
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
%p= @service.description
|
%p= @service.description
|
||||||
.col-lg-9
|
.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
|
= render 'shared/service_settings', form: form, subject: @service
|
||||||
.footer-block.row-content-block
|
.footer-block.row-content-block
|
||||||
%button.btn.btn-save{ type: 'submit' }
|
%button.btn.btn-save{ type: 'submit' }
|
||||||
|
|
Loading…
Reference in a new issue