summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/RegistrationModule.vue
diff options
context:
space:
mode:
authorUdo Walter2018-11-22 05:27:34 +0100
committerUdo Walter2018-11-22 05:27:34 +0100
commit5b315f938afddad911f2c69a2deca2ca5b3f8c17 (patch)
tree7f314825e61ff7da08a46ee7d116e72831bb10aa /webapp/src/components/RegistrationModule.vue
parent[external-backends] Fix: Delete clients in the backend is now working properly. (diff)
downloadbas-5b315f938afddad911f2c69a2deca2ca5b3f8c17.tar.gz
bas-5b315f938afddad911f2c69a2deca2ca5b3f8c17.tar.xz
bas-5b315f938afddad911f2c69a2deca2ca5b3f8c17.zip
[webapp] replace script textareas with a code editor
npm install is necessary to load the editor module
Diffstat (limited to 'webapp/src/components/RegistrationModule.vue')
-rw-r--r--webapp/src/components/RegistrationModule.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/webapp/src/components/RegistrationModule.vue b/webapp/src/components/RegistrationModule.vue
index f9b857f..8ba3c58 100644
--- a/webapp/src/components/RegistrationModule.vue
+++ b/webapp/src/components/RegistrationModule.vue
@@ -55,12 +55,12 @@
<v-dialog
:value="dialog.show"
@input="setDialog({ show: $event })"
- :max-width="dialog.type === 'delete' ? '500px' : '1000px'"
+ :max-width="dialog.type === 'delete' ? '500px' : '1200px'"
scrollable
:persistent="dialog.type !== 'delete'"
>
- <registration-module-delete v-if="dialog.type === 'delete'" />
- <registration-module-edit v-else-if="dialog.type === 'edit'"/>
+ <registration-module-delete v-show="dialog.type === 'delete'" />
+ <registration-module-edit v-show="dialog.type === 'edit'"/>
</v-dialog>
</v-container>
</template>