From 26d836767bf2f10bfa1a2f487dac23669f76695d Mon Sep 17 00:00:00 2001 From: Thaum Rystra Date: Thu, 21 May 2020 14:57:35 +0200 Subject: [PATCH] Fixed some broken forms --- app/imports/ui/components/global/globalIndex.js | 2 ++ app/imports/ui/properties/forms/ActionForm.vue | 1 - app/imports/ui/properties/forms/DamageMultiplierForm.vue | 4 ++-- app/imports/ui/properties/forms/shared/propertyFormMixin.js | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/app/imports/ui/components/global/globalIndex.js b/app/imports/ui/components/global/globalIndex.js index e201dea9..9c81a6cf 100644 --- a/app/imports/ui/components/global/globalIndex.js +++ b/app/imports/ui/components/global/globalIndex.js @@ -5,6 +5,7 @@ import TextField from '/imports/ui/components/global/TextField.vue'; import TextArea from '/imports/ui/components/global/TextArea.vue'; import SmartSelect from '/imports/ui/components/global/SmartSelect.vue'; import SmartCombobox from '/imports/ui/components/global/SmartCombobox.vue'; +import SmartCheckbox from '/imports/ui/components/global/SmartCheckbox.vue'; import SmartSwitch from '/imports/ui/components/global/SmartSwitch.vue'; Vue.component('DatePicker', DatePicker); @@ -12,4 +13,5 @@ Vue.component('TextField', TextField); Vue.component('TextArea', TextArea); Vue.component('SmartSelect', SmartSelect); Vue.component('SmartCombobox', SmartCombobox); +Vue.component('SmartCheckbox', SmartCheckbox); Vue.component('SmartSwitch', SmartSwitch); diff --git a/app/imports/ui/properties/forms/ActionForm.vue b/app/imports/ui/properties/forms/ActionForm.vue index 0f95f20d..5db8a24a 100644 --- a/app/imports/ui/properties/forms/ActionForm.vue +++ b/app/imports/ui/properties/forms/ActionForm.vue @@ -82,7 +82,6 @@ :value="model.reset" :error-messages="errors.reset" :menu-props="{auto: true, lazy: true}" - :debounce-time="debounceTime" @change="change('reset', ...arguments)" /> diff --git a/app/imports/ui/properties/forms/DamageMultiplierForm.vue b/app/imports/ui/properties/forms/DamageMultiplierForm.vue index 661bbf68..7940bd16 100644 --- a/app/imports/ui/properties/forms/DamageMultiplierForm.vue +++ b/app/imports/ui/properties/forms/DamageMultiplierForm.vue @@ -32,10 +32,10 @@