Browse Source

chore(gui-v2): remove unused view

pull/3030/head
Wing-Kam Wong 2 years ago
parent
commit
1c0627f100
  1. 2
      packages/nc-gui-v2/composables/useViewData.ts

2
packages/nc-gui-v2/composables/useViewData.ts

@ -227,7 +227,7 @@ export function useViewData(
const loadFormData = async () => {
if (!viewMeta?.value?.id) return
try {
const { columns, ...view } = (await $api.dbView.formRead(viewMeta.value.id)) as Record<string, any>
const { columns } = (await $api.dbView.formRead(viewMeta.value.id)) as Record<string, any>
const fieldById = columns.reduce(
(o: Record<string, any>, f: Record<string, any>) => ({

Loading…
Cancel
Save