diff --git a/src/pages/Property/PropertyList.vue b/src/pages/Property/PropertyList.vue index 842a69c85..949688476 100644 --- a/src/pages/Property/PropertyList.vue +++ b/src/pages/Property/PropertyList.vue @@ -12,38 +12,6 @@ const tableRef = ref(); const dataKey = 'PropertyList'; const columns = computed(() => [ - { - labelAbbreviation: 'Fo', - label: t('property.hasFormalization'), - toolTip: t('property.hasFormalization'), - name: 'hasFormalization', - component: 'checkbox', - width: '35px', - }, - { - labelAbbreviation: 'SC', - label: t('property.hasSimpleCopy'), - toolTip: t('property.hasSimpleCopy'), - name: 'hasSimpleCopy', - component: 'checkbox', - width: '35px', - }, - { - labelAbbreviation: 'OP', - label: t('property.hasOriginalPropertyDeed'), - toolTip: t('property.hasOriginalPropertyDeed'), - name: 'hasOriginalPropertyDeed', - component: 'checkbox', - width: '35px', - }, - { - labelAbbreviation: 'FP', - label: t('property.hasFundProvision'), - toolTip: t('property.hasFundProvision'), - name: 'hasFundProvision', - component: 'checkbox', - width: '35px', - }, { align: 'right', name: 'id', @@ -139,32 +107,40 @@ const columns = computed(() => [ visible: false, }, { + labelAbbreviation: 'Fo', label: t('property.hasFormalization'), + toolTip: t('property.hasFormalization'), name: 'hasFormalization', component: 'checkbox', + width: '35px', cardVisible: true, - visible: false, }, { + labelAbbreviation: 'SC', label: t('property.hasSimpleCopy'), + toolTip: t('property.hasSimpleCopy'), name: 'hasSimpleCopy', component: 'checkbox', + width: '35px', cardVisible: true, - visible: false, }, { + labelAbbreviation: 'OP', label: t('property.hasOriginalPropertyDeed'), + toolTip: t('property.hasOriginalPropertyDeed'), name: 'hasOriginalPropertyDeed', component: 'checkbox', + width: '35px', cardVisible: true, - visible: false, }, { + labelAbbreviation: 'FP', label: t('property.hasFundProvision'), + toolTip: t('property.hasFundProvision'), name: 'hasFundProvision', component: 'checkbox', + width: '35px', cardVisible: true, - visible: false, }, ]); @@ -172,7 +148,6 @@ const columns = computed(() => [