|
|
|
@ -132,7 +132,9 @@ const [useProvideSharedFormStore, useSharedFormStore] = useInjectionState((share
|
|
|
|
|
{} as Record<string, FormColumnType>, |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
columns.value = viewMeta.model?.columns?.map((c) => { |
|
|
|
|
columns.value = (viewMeta.model?.columns || []) |
|
|
|
|
.filter((c) => fieldById[c.id]) |
|
|
|
|
.map((c) => { |
|
|
|
|
if ( |
|
|
|
|
!isSystemColumn(c) && |
|
|
|
|
!isVirtualCol(c) && |
|
|
|
@ -188,6 +190,8 @@ const [useProvideSharedFormStore, useSharedFormStore] = useInjectionState((share
|
|
|
|
|
if (password.value && password.value !== '') { |
|
|
|
|
passwordError.value = error.message |
|
|
|
|
} |
|
|
|
|
} else if (error.error === NcErrorType.UNKNOWN_ERROR) { |
|
|
|
|
console.log(e) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|