summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/settings/operations/show/index.js
blob: 98e19705976c0473402a566b63b27479add34fe6 (plain)
1
2
3
4
5
6
7
8
9
import mountErrorTrackingForm from '~/error_tracking_settings';
import mountOperationSettings from '~/operation_settings';
import initSettingsPanels from '~/settings_panels';

document.addEventListener('DOMContentLoaded', () => {
  mountErrorTrackingForm();
  mountOperationSettings();
  initSettingsPanels();
});