Skip to content
Snippets Groups Projects

Resolve "Allow deletion after copy only on writable buckets"

1 file
+ 5
1
Compare changes
  • Side-by-side
  • Inline
@@ -92,6 +92,7 @@ watch(
@@ -92,6 +92,7 @@ watch(
() => props.srcObject.Key,
() => props.srcObject.Key,
(newKey) => {
(newKey) => {
formState.destKey = newKey ?? "";
formState.destKey = newKey ?? "";
 
formState.moveObject = false;
},
},
);
);
@@ -168,7 +169,10 @@ onMounted(() => {
@@ -168,7 +169,10 @@ onMounted(() => {
v-model="formState.destKey"
v-model="formState.destKey"
/>
/>
</div>
</div>
<div class="mb-3 form-check">
<div
 
class="mb-3 form-check"
 
v-if="bucketRepository.writableBucket(srcBucket)"
 
>
<input
<input
class="form-check-input"
class="form-check-input"
type="checkbox"
type="checkbox"
Loading