summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/groups/settings/ci_cd/show/index.js
blob: f26c7360fbe02619fc3420e11cd7b4c2914e6dfc (plain)
1
2
3
4
5
6
7
8
9
10
11
import SecretValues from '~/behaviors/secret_values';

export default () => {
  const secretVariableTable = document.querySelector('.js-secret-variable-table');
  if (secretVariableTable) {
    const secretVariableTableValues = new SecretValues({
      container: secretVariableTable,
    });
    secretVariableTableValues.init();
  }
};