Browse Source

Merge pull request #4179 from nocodb/fix/form-checkbox

pull/4181/head
Braks 2 years ago committed by GitHub
parent
commit
09cc2d253c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nc-gui/components/cell/Checkbox.vue

2
packages/nc-gui/components/cell/Checkbox.vue

@ -38,7 +38,7 @@ const checkboxMeta = $computed(() => {
})
function onClick() {
if (!readOnly) {
if (!readOnly?.value) {
vModel = !vModel
}
}

Loading…
Cancel
Save