diff --git a/resources/assets/vue/components/bookings/elements/BillingComponent.vue b/resources/assets/vue/components/bookings/elements/BillingComponent.vue index 13e0b7eb..7dec68a1 100644 --- a/resources/assets/vue/components/bookings/elements/BillingComponent.vue +++ b/resources/assets/vue/components/bookings/elements/BillingComponent.vue @@ -45,7 +45,7 @@
- +
diff --git a/resources/assets/vue/components/general/forms/SelectableComponent.vue b/resources/assets/vue/components/general/forms/SelectableComponent.vue index acf91b7a..95db6af8 100644 --- a/resources/assets/vue/components/general/forms/SelectableComponent.vue +++ b/resources/assets/vue/components/general/forms/SelectableComponent.vue @@ -23,17 +23,12 @@ valueColumn: { type: String, required: true - }, - options: { - default () { - return {} - } } }, created(){ if(!this.$store.getters.isInQueue(this.section)){ this.$store.dispatch('updateListQueue', {name: this.section}); - this.$store.dispatch('crudRequest', {endpoint: this.endpoint+'?filters='+JSON.stringify(this.options), method: 'get'}).then(response => { + this.$store.dispatch('crudRequest', {endpoint: this.endpoint, method: 'get'}).then(response => { let success = response.ok; response.json().then(response => { if(!success){return;}