From ff8e827ea002a9682debed535d4c82de0c4fd8b0 Mon Sep 17 00:00:00 2001 From: Pete Matsyburka Date: Sat, 17 Jun 2023 10:43:23 +0300 Subject: [PATCH] make attachment column non editable when read only --- ui/src/data_resources/components/info_cell.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/data_resources/components/info_cell.vue b/ui/src/data_resources/components/info_cell.vue index 68956ff6..728507d1 100644 --- a/ui/src/data_resources/components/info_cell.vue +++ b/ui/src/data_resources/components/info_cell.vue @@ -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