diff --git a/src/components/ImportTask.vue b/src/components/ImportTask.vue index 21fc9ba3529ef1dffc533fd971986747908cd934..e8a233b48a51e9c1810c27e6cdc75b388be434b2 100644 --- a/src/components/ImportTask.vue +++ b/src/components/ImportTask.vue @@ -83,7 +83,13 @@ export default { }, }, - props: ['data'], + props: { + data: { + type: Array, + default: null, + } + }, + data() { return { open: false, @@ -91,6 +97,10 @@ export default { }; }, + computed: { + ...mapState('feature', ['features']), + }, + watch: { data(newValue) { if (newValue) { @@ -98,9 +108,6 @@ export default { } }, }, - computed: { - ...mapState('feature', ['features']), - }, methods: { fetchImports() { diff --git a/src/components/feature/FeatureAttachmentForm.vue b/src/components/feature/FeatureAttachmentForm.vue index 253522ed8ac0922d7fd04add0db33c4c4892a1c6..922f3c6a6d8714106b9c1294bb28ef43667ff4c1 100644 --- a/src/components/feature/FeatureAttachmentForm.vue +++ b/src/components/feature/FeatureAttachmentForm.vue @@ -93,7 +93,12 @@ export default { name: 'FeatureAttachmentFormset', - props: ['attachmentForm'], + props: { + attachmentForm: { + type: Object, + default: null, + } + }, data() { return { diff --git a/src/components/feature/FeatureExtraForm.vue b/src/components/feature/FeatureExtraForm.vue index 402ec386644374e32978752fc078120f7d59cfab..a1c8140fd5c6aac973000dac7ea5609deac30e26 100644 --- a/src/components/feature/FeatureExtraForm.vue +++ b/src/components/feature/FeatureExtraForm.vue @@ -113,7 +113,12 @@ export default { Dropdown, }, - props: ['field'], + props: { + field: { + type: Object, + default: null, + } + }, computed: { selected_extra_form_list: { diff --git a/src/components/feature/FeatureListTable.vue b/src/components/feature/FeatureListTable.vue index 818a5b972fd0251dc8e596f5f254e0d64b051f3d..0d032474221692bfb64cb630455601b47233e1dd 100644 --- a/src/components/feature/FeatureListTable.vue +++ b/src/components/feature/FeatureListTable.vue @@ -282,13 +282,28 @@ import { mapState, mapGetters } from 'vuex'; export default { name: 'FeatureListTable', - props: [ - 'paginatedFeatures', - 'checkedFeatures', - 'featuresCount', - 'pagination', - 'sort', - ], + props: { + paginatedFeatures: { + type: Array, + default: null, + }, + checkedFeatures: { + type: Array, + default: null, + }, + featuresCount: { + type: Number, + default: 0, + }, + pagination: { + type: Object, + default: null, + }, + sort: { + type: Object, + default: null, + }, + }, computed: { ...mapState(['user']), diff --git a/src/components/feature_type/FeatureTypeCustomForm.vue b/src/components/feature_type/FeatureTypeCustomForm.vue index 31b39d209c6e482950118b214e9ef200093da8ce..ccf472c049ad181254a7f7ac78647a0a958fe322 100644 --- a/src/components/feature_type/FeatureTypeCustomForm.vue +++ b/src/components/feature_type/FeatureTypeCustomForm.vue @@ -158,7 +158,16 @@ export default { Dropdown, }, - props: ['customForm', 'selectedColorStyle'], + props: { + customForm: { + type: Object, + default: null, + }, + selectedColorStyle: { + type: String, + default: null, + }, + }, data() { return { diff --git a/src/views/feature_type/Feature_type_edit.vue b/src/views/feature_type/Feature_type_edit.vue index f2ff4364782d1732906aa4623173b35d93938600..77f11119c735109e333026ca941d8aed4354eb01 100644 --- a/src/views/feature_type/Feature_type_edit.vue +++ b/src/views/feature_type/Feature_type_edit.vue @@ -72,7 +72,6 @@ :selected="selectedGeomType" :selection.sync="selectedGeomType" /> - <!-- {{ form.geom_type.errors }} --> </div> <div @@ -89,7 +88,6 @@ :name="form.color.html_name" @blur="updateStore" > - <!-- {{ form.color.errors }} --> </div> </div> <div class="field">