Skip to content
Snippets Groups Projects

Resolve "Disable feature for foreign users"

Merged Daniel Göbel requested to merge feature/33-disable-feature-for-foreign-users into development
7 files
+ 34
8
Compare changes
  • Side-by-side
  • Inline
Files
7
@@ -19,6 +19,7 @@ const props = defineProps<{
active: boolean;
bucket: BucketOut;
loading: boolean;
deletable: boolean;
}>();
const randomIDSuffix = Math.random().toString(16).substr(2, 8);
@@ -88,7 +89,7 @@ onMounted(() => {
<span class="text-truncate" style="width: 80%">{{ bucket.name }}</span>
<div>
<bootstrap-icon
v-if="props.active && permission == null"
v-if="props.active && permission == null && props.deletable"
icon="trash-fill"
class="delete-icon me-2"
:width="16"
Loading