Skip to content
Snippets Groups Projects
Commit 5dd284a3 authored by Rasmus Fuhse's avatar Rasmus Fuhse Committed by Till Glöggler
Browse files

Resolve "Bug im Fragebogen-Editor erlaubt keine Plugins"

Closes #1952

Merge request studip/studip!1272
parent 8d2f9ec3
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ const Questionnaire = { ...@@ -15,7 +15,7 @@ const Questionnaire = {
for (let i in questiontypes) { for (let i in questiontypes) {
if (questiontypes[i].component[0] && questiontypes[i].component[1]) { if (questiontypes[i].component[0] && questiontypes[i].component[1]) {
//for plugins to be able to import their vue components: //for plugins to be able to import their vue components:
components[questiontypes[i].component[0]] = () => import(questiontypes[i].component[1]); components[questiontypes[i].component[0]] = () => import(/* webpackIgnore: true */ questiontypes[i].component[1]);
} }
} }
components.draggable = () => import('vuedraggable'); components.draggable = () => import('vuedraggable');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment