2022-03-02 08:16:31 +05:30
|
|
|
import { initForm } from 'ee_else_ce/issues';
|
2023-06-20 00:43:36 +05:30
|
|
|
import { mountMarkdownEditor } from '~/vue_shared/components/markdown/mount_markdown_editor';
|
|
|
|
import IssuableTemplateSelectors from '~/issuable/issuable_template_selectors';
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
initForm();
|
2023-06-20 00:43:36 +05:30
|
|
|
|
|
|
|
// eslint-disable-next-line no-new
|
|
|
|
new IssuableTemplateSelectors({ warnTemplateOverride: true, editor: mountMarkdownEditor() });
|