Skip to content

Commit

Permalink
make attachment column non editable when read only
Browse files Browse the repository at this point in the history
  • Loading branch information
omohokcoj committed Jun 17, 2023
1 parent 24f3ae1 commit ff8e827
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/data_resources/components/info_cell.vue
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ export default {
}
},
isEditable () {
return this.editable && (this.column.access_type === 'read_write' || this.isActiveStorage)
return this.editable && this.column.access_type === 'read_write'
},
columnType () {
return this.column.column_type
Expand Down

0 comments on commit ff8e827

Please sign in to comment.