Skip to content

Commit 049e343

Browse files
committed
Updates default sharing option to 'make_accessible_to_shared'
This seems like the sensible default when sharing an item with individual users.
1 parent 7ab6320 commit 049e343

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/components/Sharing/UserSharing.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ const noChanges = computed(() => {
126126
const canChangeCount = computed(() => props.item.extra?.can_change.length ?? 0);
127127
const cannotChangeCount = computed(() => props.item.extra?.cannot_change.length ?? 0);
128128
129-
const selectedSharingOption = ref<ShareOption>("make_public");
129+
const selectedSharingOption = ref<ShareOption>("make_accessible_to_shared");
130130
131131
function onUpdatePermissions() {
132132
emit("share", sharingCandidatesAsEmails.value, selectedSharingOption.value);

0 commit comments

Comments
 (0)