c2fb7f85b3
- remove hiding the alert functionality - use `danger` class instead of `warning` https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14786
42 lines
895 B
JavaScript
42 lines
895 B
JavaScript
import Vue from 'vue';
|
|
import JobApp from './components/job_app.vue';
|
|
|
|
export default () => {
|
|
const element = document.getElementById('js-job-vue-app');
|
|
|
|
return new Vue({
|
|
el: element,
|
|
components: {
|
|
JobApp,
|
|
},
|
|
render(createElement) {
|
|
const {
|
|
deploymentHelpUrl,
|
|
runnerHelpUrl,
|
|
runnerSettingsUrl,
|
|
variablesSettingsUrl,
|
|
subscriptionsMoreMinutesUrl,
|
|
endpoint,
|
|
pagePath,
|
|
logState,
|
|
buildStatus,
|
|
projectPath,
|
|
} = element.dataset;
|
|
|
|
return createElement('job-app', {
|
|
props: {
|
|
deploymentHelpUrl,
|
|
runnerHelpUrl,
|
|
runnerSettingsUrl,
|
|
variablesSettingsUrl,
|
|
subscriptionsMoreMinutesUrl,
|
|
endpoint,
|
|
pagePath,
|
|
logState,
|
|
buildStatus,
|
|
projectPath,
|
|
},
|
|
});
|
|
},
|
|
});
|
|
};
|