Browse Source

fix(nc-gui): csv upload is issue if schema edit is disabled (#8996)

pull/9000/head
Ramesh Mane 5 months ago committed by GitHub
parent
commit
dfe90e3551
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      packages/nc-gui/composables/useRoles/index.ts

2
packages/nc-gui/composables/useRoles/index.ts

@ -190,7 +190,7 @@ export const useRoles = () => {
})
const isDataReadOnly = computed(() => {
return currentSource.value?.is_schema_readonly || false
return currentSource.value?.is_data_readonly || false
})
return {

Loading…
Cancel
Save