18692: Changed logic for the isWritable property of a collection
[arvados-workbench2.git] / src / views / collection-panel / collection-panel.tsx
index 1131af255ffa913c2824d9d614dda164244222d3..a28d5254ca0aa6892789001b7a29da626ec105de 100644 (file)
@@ -135,7 +135,7 @@ export const CollectionPanel = withStyles(styles)(connect(
             }
         }
 
-        if (item && !isWritable) {
+        if (item && isWritable) {
             isWritable = !resourceIsFrozen(item, state.resources);
         }