diff --git a/app/imports/ui/components/computation/ComputedForCreature.vue b/app/imports/ui/components/computation/ComputedForCreature.vue index 90e82e72..54bef855 100644 --- a/app/imports/ui/components/computation/ComputedForCreature.vue +++ b/app/imports/ui/components/computation/ComputedForCreature.vue @@ -1,9 +1,14 @@ diff --git a/app/imports/ui/components/global/SmartInputMixin.js b/app/imports/ui/components/global/SmartInputMixin.js index f483361c..cb2d4a1a 100644 --- a/app/imports/ui/components/global/SmartInputMixin.js +++ b/app/imports/ui/components/global/SmartInputMixin.js @@ -20,7 +20,7 @@ export default { inputValue: this.value, };}, props: { - value: [String, Number, Date], + value: [String, Number, Date, Array], debounceTime: { type: Number, default: 750, diff --git a/app/imports/ui/components/global/globalIndex.js b/app/imports/ui/components/global/globalIndex.js index 8560470d..1e578e5e 100644 --- a/app/imports/ui/components/global/globalIndex.js +++ b/app/imports/ui/components/global/globalIndex.js @@ -1,11 +1,13 @@ -import Vue from "vue"; +import Vue from 'vue'; // Global components import DatePicker from '/imports/ui/components/global/DatePicker.vue'; 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'; -Vue.component("date-picker", DatePicker); -Vue.component("text-field", TextField); -Vue.component("text-area", TextArea); -Vue.component("smart-select", SmartSelect); +Vue.component('DatePicker', DatePicker); +Vue.component('TextField', TextField); +Vue.component('TextArea', TextArea); +Vue.component('SmartSelect', SmartSelect); +Vue.component('SmartCombobox', SmartCombobox); diff --git a/app/imports/ui/properties/forms/AdjustmentForm.vue b/app/imports/ui/properties/forms/AdjustmentForm.vue index 97616988..3d4ae5bf 100644 --- a/app/imports/ui/properties/forms/AdjustmentForm.vue +++ b/app/imports/ui/properties/forms/AdjustmentForm.vue @@ -1,10 +1,11 @@