Browse Source

fix(nc-gui): remove if clause that prevent view from loading

pull/3606/head
braks 2 years ago
parent
commit
bef059f99c
  1. 2
      packages/nc-gui/composables/useSharedFormViewStore.ts

2
packages/nc-gui/composables/useSharedFormViewStore.ts

@ -51,8 +51,6 @@ const [useProvideSharedFormStore, useSharedFormStore] = useInjectionState((share
columns.value?.filter((c) => c.show).filter((col) => !isVirtualCol(col) || col.uidt === UITypes.LinkToAnotherRecord),
)
const loadSharedView = async () => {
if (!sharedView.value) return
try {
const viewMeta = await api.public.sharedViewMetaGet(sharedViewId, {
headers: {

Loading…
Cancel
Save