Skip to content
Snippets Groups Projects
Commit 2f9dbf93 authored by Daniel Göbel's avatar Daniel Göbel
Browse files

Merge branch 'bugfix/126-allow-deletion-after-copy-only-on-writable-buckets' into 'main'

Resolve "Allow deletion after copy only on writable buckets"

Closes #126

See merge request !123
parents 4cfbdb1f 6d383e42
No related branches found
No related tags found
1 merge request!123Resolve "Allow deletion after copy only on writable buckets"
...@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment